1 /* local and remote users have profiles */
2 create sequence profile_seq;
4 id bigint default nextval('profile_seq') primary key /* comment 'unique identifier' */,
5 nickname varchar(64) not null /* comment 'nickname or username' */,
6 fullname varchar(255) /* comment 'display name' */,
7 profileurl varchar(255) /* comment 'URL, cached so we dont regenerate' */,
8 homepage varchar(255) /* comment 'identifying URL' */,
9 bio varchar(140) /* comment 'descriptive biography' */,
10 location varchar(255) /* comment 'physical location' */,
11 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
12 modified timestamp /* comment 'date this record was modified' */,
16 create index profile_nickname_idx on profile using btree(nickname);
19 profile_id integer not null /* comment 'foreign key to profile table' */ references profile (id) ,
20 original integer default 0 /* comment 'uploaded by user or generated?' */,
21 width integer not null /* comment 'image width' */,
22 height integer not null /* comment 'image height' */,
23 mediatype varchar(32) not null /* comment 'file type' */,
24 filename varchar(255) null /* comment 'local filename, if local' */,
25 url varchar(255) unique /* comment 'avatar location' */,
26 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
27 modified timestamp /* comment 'date this record was modified' */,
29 primary key(profile_id, width, height)
31 create index avatar_profile_id_idx on avatar using btree(profile_id);
33 create sequence sms_carrier_seq;
34 create table sms_carrier (
35 id bigint default nextval('sms_carrier_seq') primary key /* comment 'primary key for SMS carrier' */,
36 name varchar(64) unique /* comment 'name of the carrier' */,
37 email_pattern varchar(255) not null /* comment 'sprintf pattern for making an email address from a phone number' */,
38 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
39 modified timestamp /* comment 'date this record was modified ' */
42 create sequence design_seq;
44 id bigint default nextval('design_seq') /* comment 'design ID'*/,
45 backgroundcolor integer /* comment 'main background color'*/ ,
46 contentcolor integer /*comment 'content area background color'*/ ,
47 sidebarcolor integer /*comment 'sidebar background color'*/ ,
48 textcolor integer /*comment 'text color'*/ ,
49 linkcolor integer /*comment 'link color'*/,
50 backgroundimage varchar(255) /*comment 'background image, if any'*/,
51 disposition int default 1 /*comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image'*/,
58 id integer primary key /* comment 'foreign key to profile table' */ references profile (id) ,
59 nickname varchar(64) unique /* comment 'nickname or username, duped in profile' */,
60 password varchar(255) /* comment 'salted password, can be null for OpenID users' */,
61 email varchar(255) unique /* comment 'email address for password recovery etc.' */,
62 incomingemail varchar(255) unique /* comment 'email address for post-by-email' */,
63 emailnotifysub integer default 1 /* comment 'Notify by email of subscriptions' */,
64 emailnotifyfav integer default 1 /* comment 'Notify by email of favorites' */,
65 emailnotifynudge integer default 1 /* comment 'Notify by email of nudges' */,
66 emailnotifymsg integer default 1 /* comment 'Notify by email of direct messages' */,
67 emailnotifyattn integer default 1 /* command 'Notify by email of @-replies' */,
68 emailmicroid integer default 1 /* comment 'whether to publish email microid' */,
69 language varchar(50) /* comment 'preferred language' */,
70 timezone varchar(50) /* comment 'timezone' */,
71 emailpost integer default 1 /* comment 'Post by email' */,
72 jabber varchar(255) unique /* comment 'jabber ID for notices' */,
73 jabbernotify integer default 0 /* comment 'whether to send notices to jabber' */,
74 jabberreplies integer default 0 /* comment 'whether to send notices to jabber on replies' */,
75 jabbermicroid integer default 1 /* comment 'whether to publish xmpp microid' */,
76 updatefrompresence integer default 0 /* comment 'whether to record updates from Jabber presence notices' */,
77 sms varchar(64) unique /* comment 'sms phone number' */,
78 carrier integer /* comment 'foreign key to sms_carrier' */ references sms_carrier (id) ,
79 smsnotify integer default 0 /* comment 'whether to send notices to SMS' */,
80 smsreplies integer default 0 /* comment 'whether to send notices to SMS on replies' */,
81 smsemail varchar(255) /* comment 'built from sms and carrier' */,
82 uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,
83 autosubscribe integer default 0 /* comment 'automatically subscribe to users who subscribe to us' */,
84 urlshorteningservice varchar(50) default 'ur1.ca' /* comment 'service to use for auto-shortening URLs' */,
85 inboxed integer default 0 /* comment 'has an inbox been created for this user?' */,
86 design_id integer /* comment 'id of a design' */references design(id),
87 viewdesigns integer default 1 /* comment 'whether to view user-provided designs'*/,
88 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
89 modified timestamp /* comment 'date this record was modified' */
92 create index user_smsemail_idx on "user" using btree(smsemail);
96 create table remote_profile (
97 id integer primary key /* comment 'foreign key to profile table' */ references profile (id) ,
98 uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,
99 postnoticeurl varchar(255) /* comment 'URL we use for posting notices' */,
100 updateprofileurl varchar(255) /* comment 'URL we use for updates to this profile' */,
101 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
102 modified timestamp /* comment 'date this record was modified' */
105 create table subscription (
106 subscriber integer not null /* comment 'profile listening' */,
107 subscribed integer not null /* comment 'profile being listened to' */,
108 jabber integer default 1 /* comment 'deliver jabber messages' */,
109 sms integer default 1 /* comment 'deliver sms messages' */,
110 token varchar(255) /* comment 'authorization token' */,
111 secret varchar(255) /* comment 'token secret' */,
112 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
113 modified timestamp /* comment 'date this record was modified' */,
115 primary key (subscriber, subscribed)
117 create index subscription_subscriber_idx on subscription using btree(subscriber,created);
118 create index subscription_subscribed_idx on subscription using btree(subscribed,created);
120 create sequence notice_seq;
121 create table notice (
123 id bigint default nextval('notice_seq') primary key /* comment 'unique identifier' */,
124 profile_id integer not null /* comment 'who made the update' */ references profile (id) ,
125 uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,
126 content varchar(140) /* comment 'update content' */,
127 rendered text /* comment 'HTML version of the content' */,
128 url varchar(255) /* comment 'URL of any attachment (image, video, bookmark, whatever)' */,
129 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
130 modified timestamp /* comment 'date this record was modified' */,
131 reply_to integer /* comment 'notice replied to (usually a guess)' */ references notice (id) ,
132 is_local integer default 0 /* comment 'notice was generated by a user' */,
133 source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */,
134 conversation integer /*id of root notice in this conversation' */ references notice (id),
135 lat decimal(10,7) /* comment 'latitude'*/ ,
136 lon decimal(10,7) /* comment 'longitude'*/ ,
137 location_id integer /* comment 'location id if possible'*/ ,
138 location_ns integer /* comment 'namespace for location'*/ ,
139 repeat_of integer /* comment 'notice this is a repeat of' */ references notice (id)
141 /* FULLTEXT(content) */
144 create index notice_profile_id_idx on notice using btree(profile_id,created,id);
145 create index notice_created_idx on notice using btree(created);
147 create table notice_source (
148 code varchar(32) primary key not null /* comment 'source code' */,
149 name varchar(255) not null /* comment 'name of the source' */,
150 url varchar(255) not null /* comment 'url to link to' */,
151 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
152 modified timestamp /* comment 'date this record was modified' */
157 notice_id integer not null /* comment 'notice that is the reply' */ references notice (id) ,
158 profile_id integer not null /* comment 'profile replied to' */ references profile (id) ,
159 modified timestamp /* comment 'date this record was modified' */,
160 replied_id integer /* comment 'notice replied to (not used, see notice.reply_to)' */,
162 primary key (notice_id, profile_id)
165 create index reply_notice_id_idx on reply using btree(notice_id);
166 create index reply_profile_id_idx on reply using btree(profile_id);
167 create index reply_replied_id_idx on reply using btree(replied_id);
171 notice_id integer not null /* comment 'notice that is the favorite' */ references notice (id),
172 user_id integer not null /* comment 'user who likes this notice' */ references "user" (id) ,
173 modified timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was modified' */,
174 primary key (notice_id, user_id)
177 create index fave_notice_id_idx on fave using btree(notice_id);
178 create index fave_user_id_idx on fave using btree(user_id,modified);
179 create index fave_modified_idx on fave using btree(modified);
181 /* tables for OAuth */
183 create table consumer (
184 consumer_key varchar(255) primary key /* comment 'unique identifier, root URL' */,
185 seed char(32) not null /* comment 'seed for new tokens by this consumer' */,
187 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
188 modified timestamp /* comment 'date this record was modified' */
192 consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */ references consumer (consumer_key),
193 tok char(32) not null /* comment 'identifying value' */,
194 secret char(32) not null /* comment 'secret value' */,
195 type integer not null default 0 /* comment 'request or access' */,
196 state integer default 0 /* comment 'for requests 0 = initial, 1 = authorized, 2 = used' */,
198 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
199 modified timestamp /* comment 'date this record was modified' */,
201 primary key (consumer_key, tok)
205 consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */,
206 tok char(32) /* comment 'buggy old value, ignored' */,
207 nonce char(32) null /* comment 'buggy old value, ignored */,
208 ts integer not null /* comment 'timestamp sent' values are epoch, and only used internally */,
210 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
211 modified timestamp /* comment 'date this record was modified' */,
213 primary key (consumer_key, ts, nonce)
216 /* One-to-many relationship of user to openid_url */
218 create table user_openid (
219 canonical varchar(255) primary key /* comment 'Canonical true URL' */,
220 display varchar(255) not null unique /* comment 'URL for viewing, may be different from canonical' */,
221 user_id integer not null /* comment 'user owning this URL' */ references "user" (id) ,
222 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
223 modified timestamp /* comment 'date this record was modified' */
226 create index user_openid_user_id_idx on user_openid using btree(user_id);
228 /* These are used by JanRain OpenID library */
230 create table oid_associations (
231 server_url varchar(2047),
236 assoc_type varchar(64),
237 primary key (server_url, handle)
240 create table oid_nonces (
241 server_url varchar(2047),
244 unique (server_url, "timestamp", salt)
247 create table confirm_address (
248 code varchar(32) not null primary key /* comment 'good random code' */,
249 user_id integer not null /* comment 'user who requested confirmation' */ references "user" (id),
250 address varchar(255) not null /* comment 'address (email, Jabber, SMS, etc.)' */,
251 address_extra varchar(255) not null default '' /* comment 'carrier ID, for SMS' */,
252 address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms")' */,
253 claimed timestamp /* comment 'date this was claimed for queueing' */,
254 sent timestamp /* comment 'date this was sent for queueing' */,
255 modified timestamp /* comment 'date this record was modified' */
258 create table remember_me (
259 code varchar(32) not null primary key /* comment 'good random code' */,
260 user_id integer not null /* comment 'user who is logged in' */ references "user" (id),
261 modified timestamp /* comment 'date this record was modified' */
264 create table queue_item (
266 notice_id integer not null /* comment 'notice queued' */ references notice (id) ,
267 transport varchar(8) not null /* comment 'queue for what? "email", "jabber", "sms", "irc", ...' */,
268 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
269 claimed timestamp /* comment 'date this item was claimed' */,
271 primary key (notice_id, transport)
274 create index queue_item_created_idx on queue_item using btree(created);
277 create table notice_tag (
278 tag varchar( 64 ) not null /* comment 'hash tag associated with this notice' */,
279 notice_id integer not null /* comment 'notice tagged' */ references notice (id) ,
280 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
282 primary key (tag, notice_id)
284 create index notice_tag_created_idx on notice_tag using btree(created);
286 /* Synching with foreign services */
288 create table foreign_service (
289 id int not null primary key /* comment 'numeric key for service' */,
290 name varchar(32) not null unique /* comment 'name of the service' */,
291 description varchar(255) /* comment 'description' */,
292 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
293 modified timestamp /* comment 'date this record was modified' */
296 create table foreign_user (
297 id int not null unique /* comment 'unique numeric key on foreign service' */,
298 service int not null /* comment 'foreign key to service' */ references foreign_service(id) ,
299 uri varchar(255) not null unique /* comment 'identifying URI' */,
300 nickname varchar(255) /* comment 'nickname on foreign service' */,
301 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
302 modified timestamp /* comment 'date this record was modified' */,
304 primary key (id, service)
307 create table foreign_link (
308 user_id int /* comment 'link to user on this system, if exists' */ references "user" (id),
309 foreign_id int /* comment 'link' */ references foreign_user (id),
310 service int not null /* comment 'foreign key to service' */ references foreign_service (id),
311 credentials varchar(255) /* comment 'authc credentials, typically a password' */,
312 noticesync int not null default 1 /* comment 'notice synchronisation, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies' */,
313 friendsync int not null default 2 /* comment 'friend synchronisation, bit 1 = sync outgoing, bit 2 = sync incoming */,
314 profilesync int not null default 1 /* comment 'profile synchronization, bit 1 = sync outgoing, bit 2 = sync incoming' */,
315 last_noticesync timestamp default null /* comment 'last time notices were imported' */,
316 last_friendsync timestamp default null /* comment 'last time friends were imported' */,
317 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
318 modified timestamp /* comment 'date this record was modified' */,
320 primary key (user_id,foreign_id,service)
322 create index foreign_user_user_id_idx on foreign_link using btree(user_id);
324 create table foreign_subscription (
325 service int not null /* comment 'service where relationship happens' */ references foreign_service(id) ,
326 subscriber int not null /* comment 'subscriber on foreign service' */ ,
327 subscribed int not null /* comment 'subscribed user' */ ,
328 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
330 primary key (service, subscriber, subscribed)
332 create index foreign_subscription_subscriber_idx on foreign_subscription using btree(subscriber);
333 create index foreign_subscription_subscribed_idx on foreign_subscription using btree(subscribed);
335 create table invitation (
336 code varchar(32) not null primary key /* comment 'random code for an invitation' */,
337 user_id int not null /* comment 'who sent the invitation' */ references "user" (id),
338 address varchar(255) not null /* comment 'invitation sent to' */,
339 address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms") '*/,
340 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */
343 create index invitation_address_idx on invitation using btree(address,address_type);
344 create index invitation_user_id_idx on invitation using btree(user_id);
346 create sequence message_seq;
347 create table message (
349 id bigint default nextval('message_seq') primary key /* comment 'unique identifier' */,
350 uri varchar(255) unique /* comment 'universally unique identifier' */,
351 from_profile integer not null /* comment 'who the message is from' */ references profile (id),
352 to_profile integer not null /* comment 'who the message is to' */ references profile (id),
353 content varchar(140) /* comment 'message content' */,
354 rendered text /* comment 'HTML version of the content' */,
355 url varchar(255) /* comment 'URL of any attachment (image, video, bookmark, whatever)' */,
356 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
357 modified timestamp /* comment 'date this record was modified' */,
358 source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */
361 create index message_from_idx on message using btree(from_profile);
362 create index message_to_idx on message using btree(to_profile);
363 create index message_created_idx on message using btree(created);
365 create table notice_inbox (
367 user_id integer not null /* comment 'user receiving the message' */ references "user" (id),
368 notice_id integer not null /* comment 'notice received' */ references notice (id),
369 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date the notice was created' */,
370 source integer default 1 /* comment 'reason it is in the inbox: 1=subscription' */,
372 primary key (user_id, notice_id)
374 create index notice_inbox_notice_id_idx on notice_inbox using btree(notice_id);
376 create table profile_tag (
377 tagger integer not null /* comment 'user making the tag' */ references "user" (id),
378 tagged integer not null /* comment 'profile tagged' */ references profile (id),
379 tag varchar(64) not null /* comment 'hash tag associated with this notice' */,
380 modified timestamp /* comment 'date the tag was added' */,
382 primary key (tagger, tagged, tag)
384 create index profile_tag_modified_idx on profile_tag using btree(modified);
385 create index profile_tag_tagger_tag_idx on profile_tag using btree(tagger,tag);
387 create table profile_block (
389 blocker integer not null /* comment 'user making the block' */ references "user" (id),
390 blocked integer not null /* comment 'profile that is blocked' */ references profile (id),
391 modified timestamp /* comment 'date of blocking' */,
393 primary key (blocker, blocked)
397 create sequence user_group_seq;
398 create table user_group (
400 id bigint default nextval('user_group_seq') primary key /* comment 'unique identifier' */,
402 nickname varchar(64) unique /* comment 'nickname for addressing' */,
403 fullname varchar(255) /* comment 'display name' */,
404 homepage varchar(255) /* comment 'URL, cached so we dont regenerate' */,
405 description varchar(140) /* comment 'descriptive biography' */,
406 location varchar(255) /* comment 'related physical location, if any' */,
408 original_logo varchar(255) /* comment 'original size logo' */,
409 homepage_logo varchar(255) /* comment 'homepage (profile) size logo' */,
410 stream_logo varchar(255) /* comment 'stream-sized logo' */,
411 mini_logo varchar(255) /* comment 'mini logo' */,
412 design_id integer /*comment 'id of a design' */ references design(id),
414 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
415 modified timestamp /* comment 'date this record was modified' */
418 create index user_group_nickname_idx on user_group using btree(nickname);
420 create table group_member (
422 group_id integer not null /* comment 'foreign key to user_group' */ references user_group (id),
423 profile_id integer not null /* comment 'foreign key to profile table' */ references profile (id),
424 is_admin integer default 0 /* comment 'is this user an admin?' */,
426 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
427 modified timestamp /* comment 'date this record was modified' */,
429 primary key (group_id, profile_id)
432 create table related_group (
434 group_id integer not null /* comment 'foreign key to user_group' */ references user_group (id) ,
435 related_group_id integer not null /* comment 'foreign key to user_group' */ references user_group (id),
437 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
439 primary key (group_id, related_group_id)
443 create table group_inbox (
444 group_id integer not null /* comment 'group receiving the message' references user_group (id) */,
445 notice_id integer not null /* comment 'notice received' references notice (id) */,
446 created timestamp not null default CURRENT_TIMESTAMP /* comment 'date the notice was created' */,
447 primary key (group_id, notice_id)
449 create index group_inbox_created_idx on group_inbox using btree(created);
451 /*attachments and URLs stuff */
452 create sequence file_seq;
454 id bigint default nextval('file_seq') primary key /* comment 'unique identifier' */,
455 url varchar(255) unique,
456 mimetype varchar(50),
461 filename text /* comment 'if a local file, name of the file' */,
462 modified timestamp default CURRENT_TIMESTAMP /* comment 'date this record was modified'*/
465 create sequence file_oembed_seq;
466 create table file_oembed (
467 file_id bigint default nextval('file_oembed_seq') primary key /* comment 'unique identifier' */,
470 mimetype varchar(50),
471 provider varchar(50),
472 provider_url varchar(255),
477 author_name varchar(50),
478 author_url varchar(255),
482 create sequence file_redirection_seq;
483 create table file_redirection (
484 url varchar(255) primary key,
486 redirections integer,
490 create sequence file_thumbnail_seq;
491 create table file_thumbnail (
492 file_id bigint primary key,
493 url varchar(255) unique,
498 create sequence file_to_post_seq;
499 create table file_to_post (
503 primary key (file_id, post_id)
506 create table group_block (
507 group_id integer not null /* comment 'group profile is blocked from' */ references user_group (id),
508 blocked integer not null /* comment 'profile that is blocked' */references profile (id),
509 blocker integer not null /* comment 'user making the block'*/ references "user" (id),
510 modified timestamp /* comment 'date of blocking'*/ ,
512 primary key (group_id, blocked)
515 create table group_alias (
517 alias varchar(64) /* comment 'additional nickname for the group'*/ ,
518 group_id integer not null /* comment 'group profile is blocked from'*/ references user_group (id),
519 modified timestamp /* comment 'date alias was created'*/,
523 create index group_alias_group_id_idx on group_alias (group_id);
525 create table session (
527 id varchar(32) primary key /* comment 'session ID'*/,
528 session_data text /* comment 'session data'*/,
529 created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/,
530 modified integer DEFAULT extract(epoch from CURRENT_TIMESTAMP) /* comment 'date this record was modified'*/
533 create index session_modified_idx on session (modified);
535 create table deleted_notice (
537 id integer primary key /* comment 'identity of notice'*/ ,
538 profile_id integer /* not null comment 'author of the notice'*/,
539 uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI'*/,
540 created timestamp not null /* comment 'date the notice record was created'*/ ,
541 deleted timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date the notice record was created'*/
544 CREATE index deleted_notice_profile_id_idx on deleted_notice (profile_id);
546 /* Textsearch stuff */
548 create index textsearch_idx on profile using gist(textsearch);
549 create index noticecontent_idx on notice using gist(to_tsvector('english',content));
550 create trigger textsearchupdate before insert or update on profile for each row
551 execute procedure tsvector_update_trigger(textsearch, 'pg_catalog.english', nickname, fullname, location, bio, homepage);
553 create table config (
555 section varchar(32) /* comment 'configuration section'*/,
556 setting varchar(32) /* comment 'configuration setting'*/,
557 value varchar(255) /* comment 'configuration value'*/,
559 primary key (section, setting)
563 create table profile_role (
565 profile_id integer not null /* comment 'account having the role'*/ references profile (id),
566 role varchar(32) not null /* comment 'string representing the role'*/,
567 created timestamp /* not null comment 'date the role was granted'*/,
569 primary key (profile_id, role)
573 create table location_namespace (
575 id integer /*comment 'identity for this namespace'*/,
576 description text /* comment 'description of the namespace'*/ ,
577 created integer not null /*comment 'date the record was created*/ ,
578 /* modified timestamp comment 'date this record was modified',*/
583 create table login_token (
584 user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
585 token char(32) not null /* comment 'token useable for logging in'*/,
586 created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/,
587 modified timestamp /* comment 'date this record was modified'*/,
589 primary key (user_id)