diff --git a/database/migrations/2021_04_07_074613_add_column_to_ships.php b/database/migrations/2021_04_07_074613_add_column_to_ships.php new file mode 100644 index 0000000..abee5bf --- /dev/null +++ b/database/migrations/2021_04_07_074613_add_column_to_ships.php @@ -0,0 +1,32 @@ +string('shipType')->nullable(true); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('ships', function (Blueprint $table) { + $table->dropColumn('shipType'); + }); + } +} diff --git a/database/migrations/2021_04_07_075121_drop_users_table.php b/database/migrations/2021_04_07_075121_drop_users_table.php new file mode 100644 index 0000000..5be5ffb --- /dev/null +++ b/database/migrations/2021_04_07_075121_drop_users_table.php @@ -0,0 +1,28 @@ +