mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-02 06:14:51 -04:00
23 lines
337 B
PHP
23 lines
337 B
PHP
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class Migration_assignable_shortcuts extends CI_Migration
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function up()
|
|
{
|
|
execute_script(APPPATH . 'migrations/sqlscripts/3.3.8_Shortcuts.sql');
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
|
|
}
|
|
}
|
|
?>
|
|
|
|
|