mirror of
https://github.com/flarum/core.git
synced 2025-02-25 11:43:19 +01:00
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreatePostsTable extends Migration
|
|
{
|
|
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('posts', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('discussion_id')->unsigned();
|
|
$table->integer('number')->unsigned()->nullable();
|
|
|
|
$table->dateTime('time');
|
|
$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();
|
|
$table->dateTime('hide_time')->nullable();
|
|
$table->integer('hide_user_id')->unsigned()->nullable();
|
|
|
|
$table->unique(['discussion_id', 'number']);
|
|
|
|
$table->engine = 'MyISAM';
|
|
});
|
|
|
|
app('db')->statement('ALTER TABLE posts ADD FULLTEXT content (content)');
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('posts');
|
|
}
|
|
}
|