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

db.migration.V3.3__Create_table_node.sql Maven / Gradle / Ivy

Go to download

A Java implementation of the Bitmessage protocol. This contains JDBC implementations of the repositories.

There is a newer version: 2.0.4
Show newest version
CREATE TABLE Node (
  stream   BIGINT     NOT NULL,
  address  BINARY(32) NOT NULL,
  port     INT        NOT NULL,
  services BIGINT     NOT NULL,
  time     BIGINT     NOT NULL,
  PRIMARY KEY (stream, address, port)
);
CREATE INDEX idx_time on Node(time);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy