Changeset 2438 for branches/schema06/system/schema/mysql/schema.sql
- Timestamp:
- 09/04/08 03:47:39 (4 months ago)
- Files:
-
- 1 modified
-
branches/schema06/system/schema/mysql/schema.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/schema06/system/schema/mysql/schema.sql
r2409 r2438 242 242 CREATE TABLE {$prefix}permissions ( 243 243 id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, 244 descriptionVARCHAR(255) NOT NULL,245 PRIMARY KEY (id) 246 ); 247 248 INSERT INTO {$prefix}permissions ( description) VALUES244 name VARCHAR(255) NOT NULL, 245 PRIMARY KEY (id) 246 ); 247 248 INSERT INTO {$prefix}permissions (name) VALUES 249 249 ('denied'), 250 250 ('read'),
