Skip to content

Commit 2689876

Browse files
authored
Add missing meta_title and meta_description columns
1 parent d6a9ac3 commit 2689876

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

migrations/2020_04_18_064412_create_page_translations_table.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ public function up()
1818
$table->unsignedInteger('page_id');
1919
$table->string('locale', 50);
2020
$table->string('title', 255);
21+
$table->string('meta_title', 255);
22+
$table->string('meta_description', 255);
2123
$table->string('route', 255);
2224
$table->timestamps();
2325

0 commit comments

Comments
 (0)