master_template/database/migrations/2024_06_10_072503_create_table_tbl_accridations.php

38 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2024-06-10 12:21:58 +00:00
<?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('accridations', function (Blueprint $table) {
$table->id('accridiation_id');
$table->string('display')->nullable();
$table->string('title')->nullable();
$table->text('text')->nullable();
$table->string('image')->nullable();
$table->string('thumb')->nullable();
$table->string('cover')->nullable();
$table->integer('display_order')->nullable();
$table->integer('status')->nullable();
$table->integer('created_by')->nullable();
$table->integer('updated_by')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('accridations');
}
};