Skip to content

Commit

Permalink
fix related to prior commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Feb 8, 2017
1 parent 6c2a0f6 commit cb1d0f1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sql/database.sql
Expand Up @@ -9644,12 +9644,14 @@ CREATE TABLE `codes_history` (
-- Table to store multiple db connection details
DROP TABLE IF EXISTS `multiple_db`;
CREATE TABLE `multiple_db` (
`id` int(11) NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`namespace` varchar(255) NOT NULL,
`username` varchar(255) NOT NULL,
`password` text,
`dbname` varchar(255) NOT NULL,
`host` varchar(255) NOT NULL DEFAULT 'localhost',
`port` smallint(4) NOT NULL DEFAULT '3306',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
UNIQUE KEY `namespace` (namespace),
PRIMARY KEY (id)
) ENGINE=InnoDB;

0 comments on commit cb1d0f1

Please sign in to comment.