Skip to content

Instantly share code, notes, and snippets.

CREATE TABLE etf_models (
id bigint(20) NOT NULL auto_increment,
instrument_id bigint(20) NOT NULL,
asset_class varchar(255) NOT NULL,
created_at datetime NOT NULL,
PRIMARY KEY (id)
);