]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - db/laconica.sql
e906b05fe06be3ffd89736c3e9d97e49ec6e120f
[quix0rs-gnu-social.git] / db / laconica.sql
1 /* local and remote users have profiles */
2
3 create table profile (
4     id integer auto_increment 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 datetime not null comment 'date this record was created',
12     modified timestamp comment 'date this record was modified',
13
14     index profile_nickname_idx (nickname),
15     FULLTEXT(nickname, fullname, location, bio, homepage)
16 ) ENGINE=MyISAM;
17
18 create table avatar (
19     profile_id integer not null comment 'foreign key to profile table' references profile (id),
20     original boolean default false 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 key comment 'avatar location',
26     created datetime not null comment 'date this record was created',
27     modified timestamp comment 'date this record was modified',
28
29     constraint primary key (profile_id, width, height),
30     index avatar_profile_id_idx (profile_id)
31 ) ENGINE=MyISAM;
32
33 create table sms_carrier (
34     id integer auto_increment primary key comment 'primary key for SMS carrier',
35     name varchar(64) unique key comment 'name of the carrier',
36     email_pattern varchar(255) not null comment 'sprintf pattern for making an email address from a phone number',
37     created datetime not null comment 'date this record was created',
38     modified timestamp comment 'date this record was modified'
39 ) ENGINE=MyISAM;
40
41 /* local users */
42
43 create table user (
44     id integer primary key comment 'foreign key to profile table' references profile (id),
45     nickname varchar(64) unique key comment 'nickname or username, duped in profile',
46     password varchar(255) comment 'salted password, can be null for OpenID users',
47     email varchar(255) unique key comment 'email address for password recovery etc.',
48     emailnotifysub tinyint default 1 unique key comment 'Notify by email of subscriptions',
49     jabber varchar(255) unique key comment 'jabber ID for notices',
50     jabbernotify tinyint default 0 comment 'whether to send notices to jabber',
51     jabberreplies tinyint default 0 comment 'whether to send notices to jabber on replies',
52     updatefrompresence tinyint default 0 comment 'whether to record updates from Jabber presence notices',
53     sms varchar(64) unique key comment 'sms phone number',
54     carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id),
55     smsnotify tinyint default 0 comment 'whether to send notices to SMS',
56     uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
57     created datetime not null comment 'date this record was created',
58     modified timestamp comment 'date this record was modified'
59 ) ENGINE=MyISAM;
60
61 /* remote people */
62
63 create table remote_profile (
64     id integer primary key comment 'foreign key to profile table' references profile (id),
65     uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
66     postnoticeurl varchar(255) comment 'URL we use for posting notices',
67     updateprofileurl varchar(255) comment 'URL we use for updates to this profile',
68     created datetime not null comment 'date this record was created',
69     modified timestamp comment 'date this record was modified'
70 ) ENGINE=MyISAM;
71
72 create table subscription (
73     subscriber integer not null comment 'profile listening',
74     subscribed integer not null comment 'profile being listened to',
75     token varchar(255) comment 'authorization token',
76     secret varchar(255) comment 'token secret',
77     created datetime not null comment 'date this record was created',
78     modified timestamp comment 'date this record was modified',
79
80     constraint primary key (subscriber, subscribed),
81     index subscription_subscriber_idx (subscriber),
82     index subscription_subscribed_idx (subscribed)
83 ) ENGINE=MyISAM;
84
85 create table notice (
86
87     id integer auto_increment primary key comment 'unique identifier',
88     profile_id integer not null comment 'who made the update' references profile (id),
89     uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
90     content varchar(140) comment 'update content',
91     rendered text comment 'HTML version of the content',
92     url varchar(255) comment 'URL of any attachment (image, video, bookmark, whatever)',
93     created datetime not null comment 'date this record was created',
94     modified timestamp comment 'date this record was modified',
95     reply_to integer comment 'notice replied to (usually a guess)' references notice (id),
96
97     index notice_profile_id_idx (profile_id),
98     FULLTEXT(content)
99 ) ENGINE=MyISAM;
100
101 create table reply (
102
103     notice_id integer not null comment 'notice that is the reply' references notice (id),
104     profile_id integer not null comment 'profile replied to' references profile (id),
105     modified timestamp not null comment 'date this record was modified',
106     replied_id integer comment 'notice replied to (not used, see notice.reply_to)',
107     
108     constraint primary key (notice_id, profile_id),
109     index reply_notice_id_idx (notice_id),
110     index reply_profile_id_idx (profile_id),
111     index reply_replied_id_idx (replied_id)
112
113 ) ENGINE=MyISAM;
114
115 /* tables for OAuth */
116
117 create table consumer (
118     consumer_key varchar(255) primary key comment 'unique identifier, root URL',
119     seed char(32) not null comment 'seed for new tokens by this consumer',
120
121     created datetime not null comment 'date this record was created',
122     modified timestamp comment 'date this record was modified'
123 ) ENGINE=MyISAM;
124
125 create table token (
126     consumer_key varchar(255) not null comment 'unique identifier, root URL' references consumer (consumer_key),
127     tok char(32) not null comment 'identifying value',
128     secret char(32) not null comment 'secret value',
129     type tinyint not null default 0 comment 'request or access',
130     state tinyint default 0 comment 'for requests; 0 = initial, 1 = authorized, 2 = used',
131
132     created datetime not null comment 'date this record was created',
133     modified timestamp comment 'date this record was modified',
134
135     constraint primary key (consumer_key, tok)
136 ) ENGINE=MyISAM;
137
138 create table nonce (
139     consumer_key varchar(255) not null comment 'unique identifier, root URL',
140     tok char(32) not null comment 'identifying value',
141     nonce char(32) not null comment 'nonce',
142     ts datetime not null comment 'timestamp sent',
143
144     created datetime not null comment 'date this record was created',
145     modified timestamp comment 'date this record was modified',
146
147     constraint primary key (consumer_key, tok, nonce),
148     constraint foreign key (consumer_key, tok) references token (consumer_key, tok)
149 ) ENGINE=MyISAM;
150
151 /* One-to-many relationship of user to openid_url */
152
153 create table user_openid (
154     canonical varchar(255) primary key comment 'Canonical true URL',
155     display varchar(255) not null unique key comment 'URL for viewing, may be different from canonical',
156     user_id integer not null comment 'user owning this URL' references user (id),
157     created datetime not null comment 'date this record was created',
158     modified timestamp comment 'date this record was modified',
159
160     index user_openid_user_id_idx (user_id)
161 ) ENGINE=MyISAM;
162
163 /* These are used by JanRain OpenID library */
164
165 create table oid_associations (
166     server_url BLOB,
167     handle VARCHAR(255),
168     secret BLOB,
169     issued INTEGER,
170     lifetime INTEGER,
171     assoc_type VARCHAR(64),
172     PRIMARY KEY (server_url(255), handle)
173 ) ENGINE=MyISAM;
174
175 create table oid_nonces (
176     server_url VARCHAR(2047),
177     timestamp INTEGER,
178     salt CHAR(40),
179     UNIQUE (server_url(255), timestamp, salt)
180 ) ENGINE=MyISAM;
181
182 create table confirm_address (
183     code varchar(32) not null primary key comment 'good random code',
184     user_id integer not null comment 'user who requested confirmation' references user (id),
185     address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)',
186     address_extra varchar(255) not null comment 'carrier ID, for SMS',
187     address_type varchar(8) not null comment 'address type ("email", "jabber", "sms")',
188     claimed datetime comment 'date this was claimed for queueing',
189     sent datetime comment 'date this was sent for queueing',
190     modified timestamp comment 'date this record was modified'
191 ) ENGINE=MyISAM;
192
193 create table remember_me (
194     code varchar(32) not null primary key comment 'good random code',
195     user_id integer not null comment 'user who is logged in' references user (id),
196     modified timestamp comment 'date this record was modified'
197 ) ENGINE=MyISAM;
198
199 create table queue_item (
200
201     notice_id integer not null primary key comment 'notice queued' references notice (id),
202     created datetime not null comment 'date this record was created',
203     claimed datetime comment 'date this item was claimed',
204
205     index queue_item_created_idx (created)
206
207 ) ENGINE=MyISAM;
208