You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/database/migrations/2024_05_07_123414_create_po...

60 lines
1.8 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->text('title');
$table->string('slug')->unique();
$table->text('subtitle');
$table->text('body');
$table->unsignedBigInteger('group_id');
$table->unsignedBigInteger('user_id');
$table->unsignedTinyInteger('status')->default(0);
$table->unsignedInteger('view')->default(0);
$table->boolean('is_pinned')->default(0);
$table->string('hash', 14)->unique();
$table->unsignedInteger('like')->default(0);
$table->unsignedInteger('dislike')->default(0);
$table->string('icon', 128)->nullable();
$table->softDeletes();
$table->timestamps();
$table->foreign('user_id')
->references('id')->on('users');
$table->foreign('group_id')
->references('id')->on('groups');
});
Schema::create('group_post', function (Blueprint $table) {
$table->unsignedBigInteger('group_id');
$table->unsignedBigInteger('post_id');
$table->foreign('group_id')->on('groups')
->references('id')->onDelete('cascade');
$table->foreign('post_id')->on('posts')
->references('id')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('posts');
Schema::dropIfExists('group_post');
}
};