Gate postgres links

This commit is contained in:
2023-01-24 10:29:57 -05:00
parent 53529c2df7
commit 84c4322bde
5 changed files with 48 additions and 1 deletions
+11
View File
@@ -31,3 +31,14 @@ CREATE TABLE `site_mermsemr_com`.`myfit_contact` (
PRIMARY KEY (`id`),
UNIQUE INDEX `idmyfit_contact_UNIQUE` (`id` ASC) VISIBLE);
CREATE TABLE `site_mermsemr_com`.`myfit_faq` (
`uuid` VARCHAR(32) DEFAULT (uuid()),
`id` INT NOT NULL AUTO_INCREMENT,
`title` VARCHAR(45) NULL,
`text` TEXT NULL,
`added` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE INDEX `idmyfit_faq_UNIQUE` (`id` ASC) VISIBLE);