436
|
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 SERIAL,
|
|
8 |
private_key text,
|
|
9 |
public_key text,
|
|
10 |
PRIMARY KEY ( key_id )
|
|
11 |
);
|