Merge pull request #13239 from Attila96/feature/flyway_out_of_order_migrations-bael-5795
Add Flyway out of order migration scripts
This commit is contained in:
commit
a23ccae5ac
|
@ -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…
Reference in New Issue