]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added the inboxed field to the user table for PostgreSQL - resolves bug #892
authorCiaranG <ciaran@ciarang.com>
Wed, 7 Jan 2009 20:45:39 +0000 (20:45 +0000)
committerEvan Prodromou <git@evanprodromou.name>
Wed, 14 Jan 2009 16:04:46 +0000 (11:04 -0500)
db/laconica_pg.sql

index e784bb16996fd0b3861cd270c7cc59631b05ea13..4f88a6ada368bd4e2d2744a1ea7eee4eba355c90 100644 (file)
@@ -66,6 +66,7 @@ create table "user" (
     uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,\r
     autosubscribe integer default 0 /* comment 'automatically subscribe to users who subscribe to us' */,\r
     urlshorteningservice varchar(50) default 'ur1.ca' /* comment 'service to use for auto-shortening URLs' */,\r
+    inboxed integer default 0 /* comment 'has an inbox been created for this user?' */, \r
     created timestamp not null /* comment 'date this record was created' */,\r
     modified timestamp /* comment 'date this record was modified' */\r
 \r