AMS_Backend/app/Database/Migrations/2025-11-05-031042_CreateProductDescription.php
2025-11-06 13:41:06 +08:00

28 lines
837 B
PHP

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class CreateProductDescription extends Migration
{
public function up()
{
$this->forge->addField([
'product_description_id' => ['type' => 'INT', 'unsigned' => true, 'auto_increment' => true],
'description' => ['type' => 'TEXT'],
'created_at' => ['type' => 'DATETIME', 'null' => true],
'updated_at' => ['type' => 'DATETIME', 'null' => true],
'deleted_at' => ['type' => 'DATETIME', 'null' => true],
]);
$this->forge->addKey('product_description_id', true);
$this->forge->createTable('product_description');
}
public function down()
{
$this->forge->dropTable('product_description');
}
}