Add a column for archive link

This commit is contained in:
Jonny Barnes 2017-10-13 12:55:39 +01:00
parent 0084763082
commit 6c2b73c574

View file

@ -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();
});
}