12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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');
- }
- }
|