2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-25 13:16:15 +00:00
status-go/protocol/migrations/sqlite/1660226789_add_walletconnectsessions_table.up.sql

8 lines
215 B
MySQL
Raw Normal View History

CREATE TABLE IF NOT EXISTS wallet_connect_v1_sessions (
peer_id PRIMARY KEY NOT NULL,
dapp_name TEXT NOT NULL,
dapp_url TEXT NOT NULL,
info TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);