install/schemas/upgrade/1.1.2-1.1.3-postgresql.sql
author Dan
Tue, 26 Feb 2008 19:51:43 -0500
changeset 463 0857911fb7f1
parent 436 242353360e37
child 468 194a19711346
permissions -rw-r--r--
Fixed some bugs with $paths->getParam() and $paths->get_pageid_from_url() when slashes are in the namespace prefix. Result of testing on Windows Vista + Apache 2.2. Using TortoiseHG

-- Enano CMS
-- Upgrade schema: 1.1.2 - 1.1.3

-- Storing obscenely huge integers as strings since that's how php processes them.

CREATE TABLE {{TABLE_PREFIX}}diffiehellman (
  key_id SERIAL,
  private_key text,
  public_key text,
  PRIMARY KEY ( key_id )
);