1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

Add avatar handling to user model.

This commit is contained in:
Franz Liedke
2015-03-25 14:21:50 +01:00
parent 901b6b0839
commit 7f66a77ede
3 changed files with 24 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ class CreateUsersTable extends Migration {
$table->string('password');
$table->text('bio')->nullable();
$table->text('bio_html')->nullable();
$table->string('avatar')->nullable();
$table->dateTime('join_time')->nullable();
$table->dateTime('last_seen_time')->nullable();
$table->dateTime('read_time')->nullable();