Show
Ignore:
Timestamp:
09/04/08 03:47:39 (4 months ago)
Author:
bjohnson
Message:

schema06: Initial go at re-writing ACL class to work with new permission schema.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/schema06/system/schema/mysql/schema.sql

    r2409 r2438  
    242242CREATE TABLE {$prefix}permissions ( 
    243243  id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, 
    244   description VARCHAR(255) NOT NULL, 
    245   PRIMARY KEY (id) 
    246 ); 
    247  
    248 INSERT INTO {$prefix}permissions (description) VALUES 
     244  name VARCHAR(255) NOT NULL, 
     245  PRIMARY KEY (id) 
     246); 
     247 
     248INSERT INTO {$prefix}permissions (name) VALUES 
    249249  ('denied'), 
    250250  ('read'),