mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-14 03:50:33 -04:00
- Minor formating changes - Adding migration helper calls where needed - Adding locale helper calls where needed - Add use statement to tax_lib for sale_lib - pass gcaptcha enabled to the login view after checking to see if the key exists so that we don't get code errors before migrations 20170501150000 - Fixed getWhere in Appconfig model
23 lines
454 B
PHP
23 lines
454 B
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class Migration_modify_attr_links_constraint extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
error_log('Migrating modify_attr_links_constraint');
|
|
|
|
helper('migration');
|
|
execute_script(APPPATH . 'Database/Migrations/sqlscripts/3.3.2_modify_attr_links_constraint.sql');
|
|
|
|
error_log('Migrating modify_attr_links_constraint');
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
}
|
|
}
|