dex/db/migrations/0012_add_cross_client_authorizers.sql

6 lines
193 B
MySQL
Raw Normal View History

-- +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")) ;