Don't create user bio column on new installations (#2215)

This commit is contained in:
Alexander Skvortsov 2020-07-01 17:31:52 -04:00 committed by GitHub
parent 2fef79f31a
commit aa3d50c590

View File

@ -18,7 +18,6 @@ return Migration::createTable(
$table->string('email', 150)->unique();
$table->boolean('is_activated')->default(0);
$table->string('password', 100);
$table->text('bio')->nullable();
$table->string('avatar_path', 100)->nullable();
$table->binary('preferences')->nullable();
$table->dateTime('join_time')->nullable();