Files
opensourcepos/app/Database/Migrations/20250531000000_PluginConfigTableCreate.php
objecttothis b1536eead4 Create ospos_plugin_config table
- Migration to create the table in the database
- Removed unneeded using statements

Signed-off-by: objecttothis <objecttothis@gmail.com>
2025-05-31 23:24:08 +04:00

26 lines
481 B
PHP

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class PluginConfigTableCreate extends Migration
{
/**
* Perform a migration step.
*/
public function up(): void
{
error_log('Migrating plugin_config table started');
execute_script(APPPATH . 'Database/Migrations/sqlscripts/3.4.1_PluginConfigTableCreate.sql');
}
/**
* Revert a migration step.
*/
public function down(): void
{
}
}