1 -- SQL commands to update an 0.8.x version of Laconica
4 --these are just comments
7 modify column content text comment 'update content';
10 modify column content text comment 'message content';
13 modify column bio text comment 'descriptive biography';
15 alter table user_group
16 modify column description text comment 'group description';
19 alter table file_oembed
20 add column mimetype varchar(50) /*comment 'mime type of resource'*/;
24 section varchar(32) /* comment 'configuration section'*/,
25 setting varchar(32) /* comment 'configuration setting'*/,
26 value varchar(255) /* comment 'configuration value'*/,
28 primary key (section, setting)
32 create table profile_role (
34 profile_id integer not null /* comment 'account having the role'*/ references profile (id),
35 role varchar(32) not null /* comment 'string representing the role'*/,
36 created timestamp /* not null comment 'date the role was granted'*/,
38 primary key (profile_id, role)
42 create table location_namespace (
44 id integer /*comment 'identity for this namespace'*/,
45 description text /* comment 'description of the namespace'*/ ,
46 created integer not null /*comment 'date the record was created*/ ,
47 /* modified timestamp comment 'date this record was modified',*/
52 create table login_token (
53 user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
54 token char(32) not null /* comment 'token useable for logging in'*/,
55 created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/,
56 modified timestamp /* comment 'date this record was modified'*/,
61 DROP index fave_user_id_idx;
62 CREATE index fave_user_id_idx on fave (user_id,modified);
64 DROP index subscription_subscriber_idx;
65 CREATE index subscription_subscriber_idx ON subscription (subscriber,created);
67 DROP index subscription_subscribed_idx;
68 CREATE index subscription_subscribed_idx ON subscription (subscribed,created);
70 DROP index notice_profile_id_idx;
71 CREATE index notice_profile_id_idx ON notice (profile_id,created,id);
73 ALTER TABLE notice ADD COLUMN lat decimal(10, 7) /* comment 'latitude'*/;
74 ALTER TABLE notice ADD COLUMN lon decimal(10,7) /* comment 'longitude'*/;
75 ALTER TABLE notice ADD COLUMN location_id integer /* comment 'location id if possible'*/ ;
76 ALTER TABLE notice ADD COLUMN location_ns integer /* comment 'namespace for location'*/;
77 ALTER TABLE notice ADD COLUMN repeat_of integer /* comment 'notice this is a repeat of' */ references notice (id);
79 ALTER TABLE profile ADD COLUMN lat decimal(10,7) /*comment 'latitude'*/ ;
80 ALTER TABLE profile ADD COLUMN lon decimal(10,7) /*comment 'longitude'*/;
81 ALTER TABLE profile ADD COLUMN location_id integer /* comment 'location id if possible'*/;
82 ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for location'*/;