Skip to content

Instantly share code, notes, and snippets.

@taowen
Created July 23, 2019 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taowen/dbcb071e5c27dac1921950ba142cec6f to your computer and use it in GitHub Desktop.
Save taowen/dbcb071e5c27dac1921950ba142cec6f to your computer and use it in GitHub Desktop.
CREATE TABLE `Account` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL UNIQUE,
`password` varchar(255) NOT NULL,
`status` varchar(255) NOT NULL,
`retryCount` int(11) NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment