]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added the user_role table
authorBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:35:35 +0000 (20:35 +1200)
committerBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:35:35 +0000 (20:35 +1200)
db/statusnet_pg.sql

index dbfd500985a4a005f29d3ca94008393fea8ca1e0..672877ddf0bac25ba3bdfdbcb0c18e8a14460470 100644 (file)
@@ -559,3 +559,13 @@ create table config (
     primary key (section, setting)
 
 );
+
+create table user_role (
+
+    user_id integer not null /* comment 'user having the role'*/ references "user" (id),
+    role    varchar(32) not null /* comment 'string representing the role'*/,
+    created timestamp /* not null comment 'date the role was granted'*/,
+
+    primary key (user_id, role)
+
+);