mein-sterntours/database/migrations/2018_10_19_114515_create_drafts_table.php
2018-10-29 09:15:36 +01:00

33 lines
679 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateDraftsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('drafts', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->boolean('active')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('drafts');
}
}