Created
January 27, 2012 16:16
tabela users w wersji dla sqlite
This file contains 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 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