This commit is contained in:
Nordi98 2025-07-14 18:34:49 +02:00
parent 19fb68f805
commit 01d047b3cc
53 changed files with 3222 additions and 5 deletions

View file

@ -0,0 +1,7 @@
CREATE TABLE
IF NOT EXISTS `ox_doorlock` (
`id` int (11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`data` longtext NOT NULL,
PRIMARY KEY (`id`)
);