Skip to content

Commit 25ce01a

Browse files
committed
Update DB structure
1 parent fda189a commit 25ce01a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

database/migrations/2021_03_18_082008_create_links_table.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ public function up()
1717
$table->id();
1818
$table->text('link');
1919
$table->string('title');
20+
$table->string('type')->nullable();
21+
$table->text('type_params')->nullable();
2022
$table->integer('order')->default(0);
2123
$table->integer('click_number')->default(0);
2224
$table->enum('up_link', ['yes', 'no'])->default('no');

0 commit comments

Comments
 (0)