fixed demo schema setup
This commit is contained in:
parent
baa1a72942
commit
9d8d488d7d
1 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
|||
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
|
||||
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `institution`
|
||||
-- -----------------------------------------------------
|
||||
|
@ -493,4 +496,9 @@ CREATE TABLE IF NOT EXISTS `webservice_server_info` (
|
|||
`uuid` VARCHAR(255) NOT NULL,
|
||||
`service_address` VARCHAR(255) NOT NULL,
|
||||
PRIMARY KEY (`id`))
|
||||
;
|
||||
;
|
||||
|
||||
|
||||
|
||||
SET SQL_MODE=@OLD_SQL_MODE;
|
||||
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
|
Loading…
Reference in a new issue