Skip to content

Instantly share code, notes, and snippets.

@regedarek
Created January 27, 2012 16:16
Show Gist options
  • Save regedarek/1689561 to your computer and use it in GitHub Desktop.
Save regedarek/1689561 to your computer and use it in GitHub Desktop.
tabela users w wersji dla sqlite
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