1
0
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:
Toby Zerner
2015-07-22 16:03:48 +09:30
parent 526b2c48df
commit f9ef9d791b
15 changed files with 243 additions and 1973 deletions

View File

@@ -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();

View File

@@ -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();