install/schemas/upgrade/1.1.2-1.1.3-postgresql.sql
changeset 436 242353360e37
child 468 194a19711346
equal deleted inserted replaced
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 SERIAL,
       
     8   private_key text,
       
     9   public_key text,
       
    10   PRIMARY KEY ( key_id )
       
    11 );