From 6eccb3d5b9913fd53a2ec1c264c35d86da1f13f0 Mon Sep 17 00:00:00 2001 From: Nilesh Deepak Date: Wed, 5 Jul 2017 16:08:04 +0530 Subject: [PATCH] Adding new migration. --- .../2014_10_12_000000_create_users_table.php | 2 - .../2015_07_12_114933_create_books_table.php | 1 - ...7_07_05_102650_add_cover_image_display.php | 40 +++++++++++++++++++ 3 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 database/migrations/2017_07_05_102650_add_cover_image_display.php diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php index ce605b7cd..17e71de5f 100644 --- a/database/migrations/2014_10_12_000000_create_users_table.php +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -17,7 +17,6 @@ class CreateUsersTable extends Migration $table->string('name'); $table->string('email')->unique(); $table->string('password', 60); - $table->string('books_display')->default('grid'); $table->rememberToken(); $table->nullableTimestamps(); }); @@ -27,7 +26,6 @@ class CreateUsersTable extends Migration 'name' => 'Admin', 'email' => 'admin@admin.com', 'password' => bcrypt('password'), - 'books_display' => 'grid', 'created_at' => \Carbon\Carbon::now()->toDateTimeString(), 'updated_at' => \Carbon\Carbon::now()->toDateTimeString() ]); diff --git a/database/migrations/2015_07_12_114933_create_books_table.php b/database/migrations/2015_07_12_114933_create_books_table.php index b87b99db2..4220809d5 100644 --- a/database/migrations/2015_07_12_114933_create_books_table.php +++ b/database/migrations/2015_07_12_114933_create_books_table.php @@ -23,7 +23,6 @@ class CreateBooksTable extends Migration $table->string('name'); $table->string('slug')->indexed(); $table->text('description'); - $table->string('image'); $table->nullableTimestamps(); }); } diff --git a/database/migrations/2017_07_05_102650_add_cover_image_display.php b/database/migrations/2017_07_05_102650_add_cover_image_display.php new file mode 100644 index 000000000..d9a7f94ee --- /dev/null +++ b/database/migrations/2017_07_05_102650_add_cover_image_display.php @@ -0,0 +1,40 @@ +string('books_display',10)->default('grid'); + }); + + Schema::table('books', function (Blueprint $table) { + $table->string('image'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('books_display'); + }); + + Schema::table('books', function (Blueprint $table) { + $table->dropColumn('image'); + }); + } +}