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

sql.migration.V20150618204803__CreateAuthCodes.sql Maven / Gradle / Ivy

The newest version!
create table auth_codes (
    transaction_hash varchar(255) not null,
    code varchar(8) not null,
    created_at timestamp not null,
    primary key(transaction_hash)
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy