CREATE
TABLE
users
(
id
integer
NOT
NULL,
first_name
character
varying(50),
last_name
character
varying(50),
email
character
varying(255),
data
hstore,
created_at
timestamp
without
time
zone,
updated_at
timestamp
without
time
zone,
last_login
timestamp
with
time
zone
);