]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Followup to commit 4e00ce01a9841ac055c058a4f0e221cc56eca06e: rename user_role to...
authorBrion Vibber <brion@pobox.com>
Fri, 20 Nov 2009 04:55:38 +0000 (20:55 -0800)
committerZach Copley <zach@status.net>
Fri, 20 Nov 2009 05:07:11 +0000 (21:07 -0800)
db/08to09_pg.sql
db/statusnet_pg.sql

index d9b57fb8414702bd947de854693b24717361b165..7aaf3a7a00017335e4a89d8fefd8c863bdf73cde 100644 (file)
@@ -29,13 +29,13 @@ create table config (
 
 );
 
-create table user_role (
+create table profile_role (
 
-    user_id integer not null /* comment 'user having the role'*/ references "user" (id),
+    profile_id integer not null /* comment 'account having the role'*/ references profile (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)
+    primary key (profile_id, role)
 
 );
 
index 8dbaf8598142e1715c7ff726db8d809a8a764add..927925753e2949b461b52e42a2c1f26d6c78b310 100644 (file)
@@ -560,13 +560,13 @@ create table config (
 
 );
 
-create table user_role (
+create table profile_role (
 
-    user_id integer not null /* comment 'user having the role'*/ references "user" (id),
+    profile_id integer not null /* comment 'account having the role'*/ references profile (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)
+    primary key (profile_id, role)
 
 );