mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-08 06:31:20 +01:00
10 lines
239 B
SQL
Executable File
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;
|