You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2005/09/20 21:25:44 UTC

svn commit: r290535 - in /incubator/roller/branches/roller_2.0/metadata/database: 120-to-200-migration-raw.sql createdb-raw.sql

Author: snoopdave
Date: Tue Sep 20 12:25:39 2005
New Revision: 290535

URL: http://svn.apache.org/viewcvs?rev=290535&view=rev
Log:
Correcting comment about permissions mask

Modified:
    incubator/roller/branches/roller_2.0/metadata/database/120-to-200-migration-raw.sql
    incubator/roller/branches/roller_2.0/metadata/database/createdb-raw.sql

Modified: incubator/roller/branches/roller_2.0/metadata/database/120-to-200-migration-raw.sql
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/metadata/database/120-to-200-migration-raw.sql?rev=290535&r1=290534&r2=290535&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/metadata/database/120-to-200-migration-raw.sql (original)
+++ incubator/roller/branches/roller_2.0/metadata/database/120-to-200-migration-raw.sql Tue Sep 20 12:25:39 2005
@@ -1,6 +1,6 @@
 
 -- User permissions within a website
--- permission_mask: bitmask 001 limited, 011 author, 100 admin
+-- permission_mask: bitmask 000 limited, 001 author, 011 admin
 -- pending: pending user acceptance of invitation to join website
 create table roller_user_permissions (
     id              varchar(48) not null primary key,

Modified: incubator/roller/branches/roller_2.0/metadata/database/createdb-raw.sql
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/metadata/database/createdb-raw.sql?rev=290535&r1=290534&r2=290535&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/metadata/database/createdb-raw.sql (original)
+++ incubator/roller/branches/roller_2.0/metadata/database/createdb-raw.sql Tue Sep 20 12:25:39 2005
@@ -36,7 +36,7 @@
 create index ur_username_idx on userrole( username@INDEXSIZE@ );
 
 -- User permissions within a website
--- permission_mask: bitmask 001 limited, 011 author, 100 admin
+-- permission_mask: bitmask 000 limited, 001 author, 011 admin
 -- pending: pending user acceptance of invitation to join website
 create table roller_user_permissions (
     id              varchar(48) not null primary key,