mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-31 13:37:54 -05:00
- Migration to create the table in the database - Removed unneeded using statements Signed-off-by: objecttothis <objecttothis@gmail.com>
7 lines
204 B
SQL
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`);
|