Followup to commit 4e00ce01a9841ac055c058a4f0e221cc56eca06e: rename user_role to profile_role in update & postgres schemas

This commit is contained in:
Brion Vibber 2009-11-19 20:55:38 -08:00 committed by Zach Copley
parent 003b25ee56
commit 0b750c5271
2 changed files with 6 additions and 6 deletions

View 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)
);

View 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)
);