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

postcode-migration.V1.000__setup.sql Maven / Gradle / Ivy

The newest version!
create schema postcode;

create table postcode.postcode (
postcode varchar not null primary key,
items jsonb,
address_ref varchar,
city varchar);


create table postcode.address(
id varchar not null primary key,
items jsonb);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy