Initial commit
This commit is contained in:
32
database/migrations/2025_05_06_064858_create_promo_table.php
Normal file
32
database/migrations/2025_05_06_064858_create_promo_table.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?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
|
||||
{
|
||||
//Resources
|
||||
Schema::create('promotions', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->integer('sort_order')->default(0);
|
||||
$table->string('title', 2048);
|
||||
$table->string('description', 2048)->nullable();
|
||||
$table->string('additional_info', 2048)->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('promotions');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user