add sql bits

This commit is contained in:
Michael Erdely 2024-12-31 12:04:53 -05:00
parent 190da415bd
commit ad5abb2af3
Signed by: mike
SSH key fingerprint: SHA256:ukbnfrRMaRYlBZXENtBTyO2jLnql5AA5m+SzZCfYQe0

View file

@ -79,6 +79,7 @@ CREATE TABLE `items` (
`quantity` int(11) NOT NULL default '0',
`image_filename` varchar(255) default NULL,
`public` tinyint(1) NOT NULL default '0',
`archive` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`itemid`)
);