monorepo/cloud/maplepress-backend/migrations/012_create_sites_by_apikey.up.cql

14 lines
337 B
SQL

CREATE TABLE IF NOT EXISTS maplepress.sites_by_apikey (
api_key_hash TEXT PRIMARY KEY,
tenant_id UUID,
id UUID,
domain TEXT,
site_url TEXT,
api_key_prefix TEXT,
api_key_last_four TEXT,
status TEXT,
is_verified BOOLEAN,
search_index_name TEXT,
created_at TIMESTAMP,
updated_at TIMESTAMP
);