Add Flyway out of order migration scripts
This commit is contained in:
parent
f63772f5e4
commit
ca9ab2e374
@ -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)
|
||||||
|
);
|
Loading…
x
Reference in New Issue
Block a user