pixelfed/database/migrations/2018_04_18_044421_create_co...

40 lines
1.0 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCommentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('comments', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('profile_id')->unsigned();
$table->bigInteger('user_id')->unsigned()->nullable();
$table->bigInteger('status_id')->unsigned();
$table->text('comment')->nullable();
$table->text('rendered')->nullable();
$table->json('entities')->nullable();
$table->boolean('is_remote')->default(false);
$table->timestamp('rendered_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('comments');
}
}