Files
opensourcepos/app/Database/Migrations/sqlscripts/3.4.1_PluginConfigTableCreate.sql
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

7 lines
204 B
SQL

CREATE TABLE `ospos_plugin_config` (
`key` varchar(50) NOT NULL,
`value` varchar(500) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
ALTER TABLE `ospos_plugin_config` ADD PRIMARY KEY (`key`);