mirror of
https://github.com/flarum/core.git
synced 2025-07-31 13:40:20 +02:00
Implement TextFormatter for posts
Get rid of formatting on user bios, we'll do that with JavaScript
This commit is contained in:
@@ -23,7 +23,6 @@ class CreatePostsTable extends Migration
|
||||
$table->integer('user_id')->unsigned()->nullable();
|
||||
$table->string('type', 100)->nullable();
|
||||
$table->text('content')->nullable();
|
||||
$table->text('content_html')->nullable();
|
||||
|
||||
$table->dateTime('edit_time')->nullable();
|
||||
$table->integer('edit_user_id')->unsigned()->nullable();
|
||||
|
@@ -22,7 +22,6 @@ class CreateUsersTable extends Migration
|
||||
$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();
|
||||
$table->binary('preferences')->nullable();
|
||||
$table->dateTime('join_time')->nullable();
|
||||
|
Reference in New Issue
Block a user