From 6c2b73c5745c3aa15d2e08302247d4a97989ca43 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 13 Oct 2017 12:55:39 +0100 Subject: [PATCH] Add a column for archive link --- database/migrations/2017_10_07_163425_create_bookmarks_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2017_10_07_163425_create_bookmarks_table.php b/database/migrations/2017_10_07_163425_create_bookmarks_table.php index bd8053dc..4e01ef20 100644 --- a/database/migrations/2017_10_07_163425_create_bookmarks_table.php +++ b/database/migrations/2017_10_07_163425_create_bookmarks_table.php @@ -19,6 +19,7 @@ class CreateBookmarksTable extends Migration $table->string('name')->nullable(); $table->text('content')->nullable(); $table->uuid('screenshot')->nullable(); + $table->string('archve')->nullable(); $table->timestamps(); }); }