Files
c-cms-legacy/database/migrations/2018_07_18_200620_create_schedules_table.php
TheGamecraft 636c17441e ALPHA 3.0.1e
2018-07-18 21:24:34 -04:00

35 lines
704 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSchedulesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('schedules', function (Blueprint $table) {
$table->increments('id');
$table->string('date');
$table->string('type');
$table->text('data');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('schedules');
}
}