fixed migration

This commit is contained in:
2021-02-12 04:02:18 +09:00
parent 8dbe424ad4
commit ab1730cfa3

View File

@@ -14,15 +14,15 @@ class CreateWarpedBucksProgramTables extends Migration
public function up() public function up()
{ {
Schema::create('bucks_character_wallet_entries', function(Blueprint $table) { Schema::create('bucks_character_wallet_entries', function(Blueprint $table) {
$table->id();
}); });
Schema::create('bucks_alliance_systems', function(Blueprint $table) { Schema::create('bucks_alliance_systems', function(Blueprint $table) {
$table->id();
}); });
Schema::create('bucks_ratting_daily_pool', function(Blueprint $table) { Schema::create('bucks_ratting_daily_pool', function(Blueprint $table) {
$table->id();
}); });
} }
@@ -33,6 +33,8 @@ class CreateWarpedBucksProgramTables extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('warped_bucks_program_tables'); Schema::dropIfExists('bucks_character_wallet_entries');
Schema::dropIfExists('bucks_alliance_systems');
Schema::dropIfExists('bucks_ratting_daily_pool');
} }
} }