Sign in
apache
/
zetacomponents
/
trunk
/
.
/
DatabaseSchema
/
tests
/
testfiles
/
bug8900_mysql.sql
blob: 33069728d12a35f1b9b1e5c29b0d026ac7d98c22 [
file
] [
log
] [
blame
]
DROP
TABLE
IF
EXISTS
`
table1
`;
CREATE
TABLE
`
table1
`
(
`
id
`
bigint
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
);
DROP
TABLE
IF
EXISTS
`
table2
`;
CREATE
TABLE
`
table2
`
(
`
id
`
bigint
NOT
NULL
DEFAULT
0
);
ALTER
TABLE
`
table2
`
ADD
PRIMARY
KEY
(
`
id
`
);