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'); + }); + } +}