Created
November 12, 2012 18:58
-
-
Save djalmaaraujo/4061170 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `clients` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`company` varchar(255) NOT NULL DEFAULT 'pianolab' COMMENT 'Empresa detentora do modulo', | |
`url` varchar(255) NOT NULL, | |
`ftp_root` varchar(255) NOT NULL, | |
`login` varchar(30) NOT NULL, | |
`host` varchar(100) NOT NULL, | |
`user` varchar(100) NOT NULL, | |
`pass` varchar(100) NOT NULL, | |
`db` varchar(100) NOT NULL, | |
`status` int(11) NOT NULL DEFAULT '1', | |
`ftp_host` varchar(255) NOT NULL, | |
`ftp_user` varchar(255) NOT NULL, | |
`ftp_pass` varchar(255) NOT NULL, | |
`users_creator_id` int(11) DEFAULT NULL, | |
`created` datetime DEFAULT NULL, | |
`modified` datetime DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
KEY `login, pass` (`login`) | |
) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=latin1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment