db.migration.V1.1__Create_table_address.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jabit-repositories Show documentation
Show all versions of jabit-repositories Show documentation
A Java implementation of the Bitmessage protocol. This contains JDBC implementations of the repositories.
CREATE TABLE Address (
address VARCHAR(40) NOT NULL PRIMARY KEY,
version BIGINT NOT NULL,
alias VARCHAR(255),
public_key BLOB,
private_key BLOB,
subscribed BIT DEFAULT '0'
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy