| CREATE TABLE users ( | |
| id INTEGER PRIMARY KEY, | |
| user_login text NOT NULL DEFAULT '', | |
| user_pass text NOT NULL DEFAULT '', | |
| user_nicename text NOT NULL DEFAULT '', | |
| user_email text NOT NULL DEFAULT '', | |
| user_url text NOT NULL DEFAULT '', | |
| user_registered datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
| user_activation_key text NOT NULL DEFAULT '', | |
| user_status integer NOT NULL DEFAULT '0', | |
| display_name text NOT NULL DEFAULT '', | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment