Skip to content

Instantly share code, notes, and snippets.

@npapratovic
Created March 24, 2018 20:52
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 npapratovic/7f845ff7361710589e9fe563062a02e8 to your computer and use it in GitHub Desktop.
Save npapratovic/7f845ff7361710589e9fe563062a02e8 to your computer and use it in GitHub Desktop.
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`username` varchar(50) NOT NULL,
`first_name` varchar(50) NOT NULL,
`last_name` varchar(50) NOT NULL,
`email` varchar(100) NOT NULL,
`birth_date` date NOT NULL,
`password` varchar(100) NOT NULL,
`spol` varchar(2) NOT NULL,
`country` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment