Add page migration

This commit is contained in:
Daniel Supernault 2019-01-31 12:57:02 -07:00
parent 6bad723b68
commit 9b2bcd034e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePagesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('pages', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('root')->nullable()->index();
$table->string('slug')->nullable()->unique()->index();
$table->string('title')->nullable();
$table->unsignedInteger('category_id')->nullable()->index();
$table->longText('content')->nullable();
$table->string('template')->default('layouts.app')->index();
$table->boolean('active')->default(false)->index();
$table->boolean('cached')->default(true)->index();
$table->timestamp('active_until')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('pages');
}
}