~ubuntu-branches/ubuntu/saucy/mediawiki-extensions/saucy

« back to all changes in this revision

Viewing changes to maintenance/OpenID/openid_table.pg.sql

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis
  • Date: 2009-03-25 19:36:16 UTC
  • Revision ID: james.westby@ubuntu.com-20090325193616-wao3b2mgbb0qyv7i
Tags: 1.6
* Updated extensions.
* Added OpenID extension.
* Added README.Debian.
Closes: #516693
* Bumped standards version to 3.8.1
* Bumped compatibility level to 7.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
-- Schema for the OpenID extension (Postgres version)
 
3
 
 
4
CREATE TABLE user_openid (
 
5
  uoi_openid  VARCHAR(255) PRIMARY KEY NOT NULL,
 
6
  uoi_user    INTEGER                  NOT NULL
 
7
);
 
8
 
 
9
CREATE UNIQUE INDEX user_openid_unique ON user_openid(uoi_user);