Files
timebank-cc-public/database/migrations/2023_06_01_090023_create_posts_table.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

37 lines
858 B
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.
*
* @return void
*/
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->integer('postable_id'); // Make author polymorph: user / organization / other
$table->string('postable_type'); // Make author polymorph: user / organization / other
$table->integer('category_id')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('posts');
}
};