Files
safekat/ci4/app/Database/Migrations/2024-12-08-195700_AlterColumnServiciosCliente.php
2025-04-21 12:55:45 +02:00

39 lines
865 B
PHP
Executable File

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class AlterColumnServiciosCliente extends Migration
{
protected array $ALTER_COLUMNS = [
"deleted_at" => [
"name" => "deleted_at",
"type" => "datetime",
"default" => null,
"null" => true,
],
"updated_at" => [
"name" => "updated_at",
"type" => "datetime",
"default" => null,
"null" => true,
],
];
public function up()
{
$this->forge->modifyColumn("servicios_cliente", $this->ALTER_COLUMNS);
}
public function down()
{
$this->forge->addField([
"is_deleted" => [
"type" => "boolean",
"default" => false,
"null" => false,
]
]);
}
}