Skip to content

Commit

Permalink
chore: add sample migration
Browse files Browse the repository at this point in the history
  • Loading branch information
tkqubo committed Feb 2, 2016
1 parent 5e8dc01 commit 987a821
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/resources/db/migration/V20160202032023462__init.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
create table users(
name VARCHAR(255) PRIMARY KEY,
email VARCHAR(255)
);
insert into users values ('sample1', 'sample1@example.com');
insert into users values ('sample2', 'sample2@example.com');

0 comments on commit 987a821

Please sign in to comment.