Add Flyway out of order migration scripts

This commit is contained in:
Uhrin Attila 2023-01-05 09:03:10 +01:00
parent f63772f5e4
commit ca9ab2e374
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)
);