Remove balance field from user table #130

This commit is contained in:
Nabeel Shahzad
2018-03-02 17:31:58 -06:00
parent 586769fbf0
commit fa5237179b

View File

@@ -28,7 +28,6 @@ class CreateUsersTable extends Migration
$table->unsignedBigInteger('flights')->default(0);
$table->unsignedBigInteger('flight_time')->nullable()->default(0);
$table->unsignedBigInteger('transfer_time')->nullable()->default(0);
$table->decimal('balance')->nullable();
$table->string('timezone', 64)->nullable();
$table->unsignedTinyInteger('status')->nullable()->default(0);
$table->unsignedTinyInteger('state')->nullable()->default(0);