1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

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 0b5a9a2fe6
commit 8a686911ff

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();