-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestdb.log
More file actions
20 lines (20 loc) · 1.41 KB
/
testdb.log
File metadata and controls
20 lines (20 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*C6*/SET SCHEMA PUBLIC
DISCONNECT
/*C7*/SET SCHEMA PUBLIC
drop table Binary if exists
drop table Book if exists
drop table User if exists
create table Binary (id varchar(255) not null, contents varbinary(255), owner varchar(255), type varchar(255), primary key (id))
create table Book (id varchar(255) not null, author varchar(255), createdDate varchar(255), description varchar(255), edition varchar(255), keyword varchar(255), owner varchar(255), subtitle varchar(255), tag varchar(255), theme varchar(255), title varchar(255), primary key (id))
create table User (username varchar(255) not null, iconId varchar(255), password varchar(255), pictureId varchar(255), primary key (username))
INSERT INTO USER VALUES('bylee',NULL,'password',NULL)
COMMIT
/*C8*/SET SCHEMA PUBLIC
DISCONNECT
/*C9*/SET SCHEMA PUBLIC
drop table Binary if exists
drop table Book if exists
drop table User if exists
create table Binary (id varchar(255) not null, contents varbinary(255), owner varchar(255), type varchar(255), primary key (id))
create table Book (id varchar(255) not null, author varchar(255), createdDate varchar(255), description varchar(255), edition varchar(255), keyword varchar(255), owner varchar(255), subtitle varchar(255), tag varchar(255), theme varchar(255), title varchar(255), primary key (id))
create table User (username varchar(255) not null, iconId varchar(255), password varchar(255), pictureId varchar(255), primary key (username))