Change name of avatar field in users table.

This commit is contained in:
Franz Liedke
2015-03-26 20:59:06 +01:00
parent ab9cf922db
commit cf8e02977f
3 changed files with 10 additions and 4 deletions

View File

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