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

sql.migration.V20150712032247__CreateGateAuthCode.sql Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
create table gate_auth_codes (
    transaction_hash varchar(255) not null,
    code_hash varchar(255) not null,
    is_deleted boolean not null,
    primary key(transaction_hash)
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy