All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.examples.sql.example-changelog.sql Maven / Gradle / Ivy

There is a newer version: 4.31.0
Show newest version
--liquibase formatted sql

--changeset your.name:1
create table person (
    id int primary key,
    name varchar(50) not null,
    address1 varchar(50),
    address2 varchar(50),
    city varchar(30)
)

--changeset your.name:2
create table company (
    id int primary key,
    name varchar(50) not null,
    address1 varchar(50),
    address2 varchar(50),
    city varchar(30)
)

--changeset other.dev:3
alter table person add column country varchar(2)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy