mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreatePostsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
if (Schema::hasTable('posts')) {
|
|
return;
|
|
}
|
|
Schema::create('posts', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->unsignedMediumInteger('topicid')->default(0);
|
|
$table->unsignedMediumInteger('userid')->default(0)->index('userid');
|
|
$table->dateTime('added')->nullable()->index('added');
|
|
$table->text('body')->nullable();
|
|
$table->text('ori_body')->nullable();
|
|
$table->unsignedMediumInteger('editedby')->default(0);
|
|
$table->dateTime('editdate')->nullable();
|
|
$table->index(['topicid', 'id'], 'topicid_id');
|
|
});
|
|
\Illuminate\Support\Facades\DB::statement('alter table posts add fulltext body(body)');
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('posts');
|
|
}
|
|
}
|