Sign in
apache
/
zetacomponents
/
refs/heads/trunk
/
.
/
DatabaseSchema
/
tests
/
testfiles
/
bug8900_pgsql.sql
blob: fe8b0989e30d2a3dbdff41bafb6d74653c056391 [
file
] [
log
] [
blame
]
DROP
TABLE
"table1"
;
CREATE
TABLE
"table1"
(
"id"
serial
PRIMARY
KEY
NOT
NULL
);
DROP
TABLE
"table2"
;
CREATE
TABLE
"table2"
(
"id"
bigint
NOT
NULL
DEFAULT
0
);
ALTER
TABLE
"table2"
ADD
CONSTRAINT
"table2_pkey"
PRIMARY
KEY
(
"id"
);