  |
1 | | - | # $Id: oscommerce.sql 1076 2006-10-25 15:37:50Z hpdl $ |
| |
| 1 | + | # $Id: oscommerce.sql 1078 2006-10-25 15:43:32Z hpdl $ |
|
2 | 2 | | # |
| |
3 | 3 | | # osCommerce, Open Source E-Commerce Solutions |
| |
4 | 4 | | # http://www.oscommerce.com |
| |
|
|
 |
… |
|
50 | 50 | | PRIMARY KEY (id) |
| |
51 | 51 | | ); |
| |
52 | 52 | | |
  |
| 53 | + | DROP TABLE IF EXISTS osc_administrators_access; |
| |
| 54 | + | CREATE TABLE osc_administrators_access ( |
| |
| 55 | + | administrators_id int NOT NULL, |
| |
| 56 | + | module varchar(255) NOT NULL, |
| |
| 57 | + | PRIMARY KEY (administrators_id, module) |
| |
| 58 | + | ); |
| |
| 59 | + | |
  |
53 | 60 | | DROP TABLE IF EXISTS osc_banners; |
| |
54 | 61 | | CREATE TABLE osc_banners ( |
| |
55 | 62 | | banners_id int NOT NULL auto_increment, |