changeset 436 | 242353360e37 |
child 468 | 194a19711346 |
435:a434d60e525d | 436:242353360e37 |
---|---|
1 -- Enano CMS |
|
2 -- Upgrade schema: 1.1.2 - 1.1.3 |
|
3 |
|
4 -- Storing obscenely huge integers as strings since that's how php processes them. |
|
5 |
|
6 CREATE TABLE {{TABLE_PREFIX}}diffiehellman ( |
|
7 key_id int(12) NOT NULL auto_increment, |
|
8 private_key text, |
|
9 public_key text, |
|
10 PRIMARY KEY ( key_id ) |
|
11 ) CHARACTER SET `utf8` COLLATE `utf8_bin`; |