1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-08 06:31:20 +01:00
openstamanager/update/create_updates.sql
2020-02-14 17:02:16 +01:00

10 lines
239 B
SQL
Executable File

CREATE TABLE `updates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`directory` varchar(255),
`version` varchar(255) NOT NULL,
`sql` boolean NOT NULL,
`script` boolean NOT NULL,
`done` int(11),
PRIMARY KEY (`id`)
) ENGINE=InnoDB;