mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-07-10 15:06:26 -04:00
18 lines
282 B
PHP
18 lines
282 B
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class Migration_PaymentDateFix extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
execute_script(APPPATH . 'migrations/sqlscripts/3.3.2_paymentdatefix.sql');
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
|
|
}
|
|
} |