A lot of things
This commit is contained in:
@@ -12,7 +12,22 @@ return new class extends Migration
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('news', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
$table->string('title');
|
||||
$table->string('slug')->unique();
|
||||
$table->foreignId('category_id')->nullable()->constrained('categories')->nullOnDelete();
|
||||
$table->longText('description');
|
||||
$table->enum('state', [ 'draft', 'pending', 'published', 'locked', 'rejected', 'hidden' ] )->default('draft');
|
||||
|
||||
$table->foreignId('entry_id')->nullable()->constrained('entries')->nullOnDelete();
|
||||
$table->string('relevant_link', 500 )->nullable();
|
||||
$table->string('youtube_link', 500 )->nullable();
|
||||
|
||||
$table->unsignedBigInteger( 'user_id' ); // xf_user_id
|
||||
$table->unsignedBigInteger( 'comments_thread_id' )->nullable(); // xf_thread
|
||||
|
||||
$table->softDeletes();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user