Add a column for the user avatar #226

This commit is contained in:
Nabeel Shahzad
2018-04-02 06:47:31 -05:00
parent bb73af3806
commit f84ff8de92
2 changed files with 17 additions and 2 deletions

View File

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