diff --git a/database/migrations/2018_12_01_020238_add_type_to_status_table.php b/database/migrations/2018_12_01_020238_add_type_to_status_table.php new file mode 100644 index 000000000..a7fe1c360 --- /dev/null +++ b/database/migrations/2018_12_01_020238_add_type_to_status_table.php @@ -0,0 +1,32 @@ +string('type')->index()->nullable()->after('profile_id'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('statuses', function (Blueprint $table) { + $table->dropColumn('type'); + }); + } +}