~ubuntu-branches/ubuntu/raring/apgdiff/raring

« back to all changes in this revision

Viewing changes to src/test/resources/cz/startnet/utils/pgdiff/loader/schema_3.sql

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2008-09-09 15:42:54 UTC
  • Revision ID: james.westby@ubuntu.com-20080909154254-458sv7ew1rczdal1
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--
 
2
-- TOC Entry ID 2 (OID 605638)
 
3
--
 
4
-- Name: admins_aid_seq Type: SEQUENCE Owner: xxxx
 
5
--
 
6
 
 
7
CREATE SEQUENCE "admins_aid_seq" start 1 increment 1 maxvalue 1000000000 minvalue 1 cache 1;
 
8
 
 
9
--
 
10
-- TOC Entry ID 108 (OID 605640)
 
11
--
 
12
-- Name: admins Type: TABLE Owner: enki
 
13
--
 
14
 
 
15
CREATE TABLE "admins" (
 
16
    "aid" integer DEFAULT nextval('"admins_aid_seq"'::text) NOT NULL,
 
17
    "companyid" integer DEFAULT 0 NOT NULL,
 
18
    "groupid" integer DEFAULT 0 NOT NULL,
 
19
    "username" character varying NOT NULL,
 
20
    "password" character varying(40) NOT NULL,
 
21
    "superuser" boolean DEFAULT 'f'::bool NOT NULL,
 
22
    "name" character varying(40),
 
23
    "surname" character varying(40),
 
24
    "email" character varying(100) NOT NULL,
 
25
    "tel" character varying(40),
 
26
    "mobile" character varying(40),
 
27
    "enabled" boolean DEFAULT 't'::bool NOT NULL,
 
28
    "lastlogints" timestamp with time zone DEFAULT now() NOT NULL,
 
29
    "expirienced" boolean DEFAULT 'f'::bool,
 
30
    Constraint "admins_pkey" Primary Key ("aid")
 
31
);
 
 
b'\\ No newline at end of file'