Skip to content

Commit

Permalink
Initial SQL schema for testing Flyway integration.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrg committed Feb 25, 2013
1 parent 8dfd39a commit 01d4207
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CREATE TABLE AUTO_PK_SUPPORT (TABLE_NAME CHAR(100) NOT NULL, NEXT_ID BIGINT NOT NULL, PRIMARY KEY(TABLE_NAME));

INSERT INTO AUTO_PK_SUPPORT (TABLE_NAME, NEXT_ID) VALUES ('PEOPLE', 200);

CREATE TABLE PEOPLE (email_address VARCHAR(50) NULL, first_name VARCHAR(25) NULL, id BIGINT NOT NULL, last_name VARCHAR(25) NULL, password VARCHAR(40) NULL, PRIMARY KEY (id));

0 comments on commit 01d4207

Please sign in to comment.