renamed table from Prices to mineral_prices to be more descriptive

This commit is contained in:
2020-02-04 23:17:36 -06:00
parent f9e69bfd24
commit aac90b4be8
2 changed files with 4 additions and 4 deletions

View File

@@ -66,8 +66,8 @@ class CreateConfigTable extends Migration
});
}
if(!Schema::hasTable('Prices')) {
Schema::create('Prices', function (Blueprint $table) {
if(!Schema::hasTable('mineral_prices')) {
Schema::create('mineral_prices', function (Blueprint $table) {
$table->increments('id');
$table->string('Name');
$table->integer('ItemId');
@@ -98,7 +98,7 @@ class CreateConfigTable extends Migration
{
Schema::dropIfExists('Config');
Schema::dropIfExists('ItemComposition');
Schema::dropIfExists('Prices');
Schema::dropIfExists('mineral_prices');
Schema::dropIfExists('OrePrices');
}
}