We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 585059a + e58ddf6 commit b1f5c63Copy full SHA for b1f5c63
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