update database migration

This commit is contained in:
2020-02-04 23:02:22 -06:00
parent f199d633b1
commit a2c47b87b9

View File

@@ -69,10 +69,10 @@ class CreateConfigTable extends Migration
if(!Schema::hasTable('Prices')) {
Schema::create('Prices', function (Blueprint $table) {
$table->increments('id');
$table->text('Name');
$table->string('Name');
$table->integer('ItemId');
$table->decimal('Price', 20, 2);
$table->string('Time');
$table->dateTime('Time');
});
}