mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-07-10 23:17:08 -04:00
18 lines
298 B
PHP
18 lines
298 B
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class Migration_fix_attribute_datetime extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
execute_script(APPPATH . 'migrations/sqlscripts/3.3.0_fix_attribute_datetime.sql');
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
|
|
}
|
|
} |