1
0
mirror of https://github.com/flarum/core.git synced 2025-07-19 07:41:22 +02:00

Implement user "bio" field

Perhaps this should be an extension, but it is pretty essential and I
can’t think of many instances where it wouldn’t be wanted. Would be
very easy to extract later on if need be.
This commit is contained in:
Toby Zerner
2015-03-12 10:38:18 +10:30
parent 2900467678
commit 4395935cbe
8 changed files with 97 additions and 1 deletions

View File

@@ -21,6 +21,8 @@ class CreateUsersTable extends Migration {
$table->string('confirmation_token')->nullable();
$table->boolean('is_activated')->default(0);
$table->string('password');
$table->text('bio')->nullable();
$table->text('bio_html')->nullable();
$table->dateTime('join_time')->nullable();
$table->dateTime('last_seen_time')->nullable();
$table->dateTime('read_time')->nullable();