We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 585059a commit e58ddf6Copy full SHA for e58ddf6
database/migrations/2017_05_20_130000_create_pages_table.php
@@ -12,6 +12,7 @@ public function up()
12
$table->id();
13
$table->string('slug')->unique()->index();
14
$table->string('title')->unique();
15
+ $table->boolean('location_based')->default('false');
16
$table->foreignIdFor(app('page'), 'parent_id')->nullable(); // Parent Page
17
$table->text('content')->nullable(); // Will be written in Markdown.
18
0 commit comments