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:
doodoroma 2023-01-10 19:51:08 +01:00 committed by GitHub
commit a23ccae5ac
3 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,5 @@
create table city (
id numeric,
name varchar(50),
constraint pk_city primary key (id)
);

View File

@ -0,0 +1,3 @@
alter table city add column (
zip varchar(10)
);

View File

@ -0,0 +1,5 @@
create table person (
id numeric,
name varchar(50),
constraint pk_person primary key (id)
);