From 9cd0234665ea66dff172d94b9c1b4cb61b1d25b1 Mon Sep 17 00:00:00 2001 From: Fbenas Date: Sun, 21 Jun 2020 17:58:23 +0100 Subject: Improve robustness of all scripts and add more to sync command --- .../2020_06_20_214459_add_url_to_videos.php | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 database/migrations/2020_06_20_214459_add_url_to_videos.php (limited to 'database/migrations') diff --git a/database/migrations/2020_06_20_214459_add_url_to_videos.php b/database/migrations/2020_06_20_214459_add_url_to_videos.php new file mode 100644 index 0000000..b55fb29 --- /dev/null +++ b/database/migrations/2020_06_20_214459_add_url_to_videos.php @@ -0,0 +1,36 @@ +string('url')->nullable(); + } + ); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table( + 'videos', function (Blueprint $table) { + // + } + ); + } +} -- cgit v1.2.3