Strimoid/Strimoid

View on GitHub
database/migrations/2015_03_15_000003_create_contents_table.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateContentsTable extends Migration
{
    /**
     * Run the migrations.
     */
    public function up(): void
    {
        Schema::create('contents', function (Blueprint $table) {
            $table->increments('id');

            $table->string('title');
            $table->string('description')->nullable();
            $table->string('domain')->nullable();
            $table->string('thumbnail')->nullable();

            $table->text('url')->nullable();
            $table->text('text')->nullable();
            $table->text('text_source')->nullable();

            // Counters
            $table->integer('comments_count')->unsigned()->default(0);
            $table->integer('related_count')->unsigned()->default(0);

            // Flags
            $table->boolean('eng')->default(0);
            $table->boolean('nsfw')->default(0);

            // Relations
            $table->integer('user_id')->unsigned();
            $table->foreign('user_id')->references('id')->on('users');

            $table->integer('group_id')->unsigned();
            $table->foreign('group_id')->references('id')->on('groups');

            // Vote counts
            $table->integer('uv')->unsigned()->default(0);
            $table->integer('dv')->unsigned()->default(0);
            $table->integer('score')->default(0);

            // Timestamps
            $table->timestamp('frontpage_at')->nullable();
            $table->timestamps();
            $table->softDeletes();
            $table->integer('deleted_by')->unsigned()->nullable();
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::drop('contents');
    }
}