forked from mirror/pixelfed
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
|
<?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');
|
||
|
}
|
||
|
}
|