forked from mystiq/dex
f9dbc8a3d2
Trusted Peers are clients that are authorized to mint tokens for another client.
5 lines
193 B
SQL
5 lines
193 B
SQL
-- +migrate Up
|
|
CREATE TABLE IF NOT EXISTS "trusted_peers" (
|
|
"client_id" text not null,
|
|
"trusted_client_id" text not null,
|
|
primary key ("client_id", "trusted_client_id")) ;
|