mirror of
https://github.com/flarum/core.git
synced 2025-07-31 13:40:20 +02:00
Merge branch 'master' into psr-7
Conflicts: src/Api/Actions/Discussions/IndexAction.php src/Api/Actions/SerializeAction.php src/Core/Formatter/FormatterManager.php src/Extend/ForumAssets.php src/Forum/Actions/IndexAction.php src/Forum/ForumServiceProvider.php
This commit is contained in:
@@ -15,7 +15,6 @@ class CreateUsersDiscussionsTable extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::create('users_discussions', function (Blueprint $table) {
|
||||
|
||||
$table->integer('user_id')->unsigned();
|
||||
$table->integer('discussion_id')->unsigned();
|
||||
$table->dateTime('read_time')->nullable();
|
||||
|
@@ -20,6 +20,7 @@ class CreateUsersTable extends Migration
|
||||
$table->string('email', 150)->unique();
|
||||
$table->boolean('is_activated')->default(0);
|
||||
$table->string('password', 100);
|
||||
$table->string('locale', 10)->default('en');
|
||||
$table->text('bio')->nullable();
|
||||
$table->text('bio_html')->nullable();
|
||||
$table->string('avatar_path', 100)->nullable();
|
||||
|
Reference in New Issue
Block a user