From 059aca3e624a466a76c61300dae23d5d39197e93 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 4 May 2019 18:12:02 -0600 Subject: [PATCH] Add migration --- ...04_174911_add_header_to_profiles_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2019_05_04_174911_add_header_to_profiles_table.php diff --git a/database/migrations/2019_05_04_174911_add_header_to_profiles_table.php b/database/migrations/2019_05_04_174911_add_header_to_profiles_table.php new file mode 100644 index 000000000..7907aa5d2 --- /dev/null +++ b/database/migrations/2019_05_04_174911_add_header_to_profiles_table.php @@ -0,0 +1,32 @@ +string('header_bg')->nullable()->after('profile_layout'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('profiles', function (Blueprint $table) { + $table->dropColumn('header_bg'); + }); + } +}