Add Flyway out of order migration scripts
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
create table city (
|
||||
id numeric,
|
||||
name varchar(50),
|
||||
constraint pk_city primary key (id)
|
||||
);
|
||||
@@ -0,0 +1,3 @@
|
||||
alter table city add column (
|
||||
zip varchar(10)
|
||||
);
|
||||
@@ -0,0 +1,5 @@
|
||||
create table person (
|
||||
id numeric,
|
||||
name varchar(50),
|
||||
constraint pk_person primary key (id)
|
||||
);
|
||||
Reference in New Issue
Block a user