Inital commit
This commit is contained in:
12
apiHandler/customWebcams/db_table_config.sql.template
Normal file
12
apiHandler/customWebcams/db_table_config.sql.template
Normal file
@ -0,0 +1,12 @@
|
||||
DROP TABLE IF EXISTS `customWebcams`
|
||||
#NL
|
||||
CREATE TABLE IF NOT EXISTS `customWebcams` (
|
||||
`id` BIGINT unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` TEXT CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
||||
`source_id` TEXT CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
||||
`loc` POINT NOT NULL,
|
||||
`protocol_id` TEXT CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
||||
`link` TEXT CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
||||
UNIQUE (id)
|
||||
);
|
||||
#NL
|
Reference in New Issue
Block a user