mirror of
https://github.com/flarum/framework.git
synced 2025-02-15 01:22:52 +08:00
Don't create user bio column on new installations (#2215)
This commit is contained in:
parent
2fef79f31a
commit
aa3d50c590
|
@ -18,7 +18,6 @@ return Migration::createTable(
|
||||||
$table->string('email', 150)->unique();
|
$table->string('email', 150)->unique();
|
||||||
$table->boolean('is_activated')->default(0);
|
$table->boolean('is_activated')->default(0);
|
||||||
$table->string('password', 100);
|
$table->string('password', 100);
|
||||||
$table->text('bio')->nullable();
|
|
||||||
$table->string('avatar_path', 100)->nullable();
|
$table->string('avatar_path', 100)->nullable();
|
||||||
$table->binary('preferences')->nullable();
|
$table->binary('preferences')->nullable();
|
||||||
$table->dateTime('join_time')->nullable();
|
$table->dateTime('join_time')->nullable();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user