mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
8 lines
206 B
MySQL
8 lines
206 B
MySQL
|
CREATE TABLE IF NOT EXISTS community_token_owners (
|
||
|
chain_id INT NOT NULL,
|
||
|
address TEXT NOT NULL,
|
||
|
owner TEXT NOT NULL COLLATE NOCASE,
|
||
|
amount INT NOT NULL,
|
||
|
PRIMARY KEY(chain_id, address, owner)
|
||
|
);
|