This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
otter-space-sdk/db/migrations/004_create_table_Source_2024_06_04.sql

11 lines
184 B
MySQL
Raw Normal View History

-- +migrate Up
CREATE TABLE "Source"
(
id VARCHAR(25) PRIMARY KEY,
display_name TEXT,
domain TEXT NOT NULL UNIQUE
);
-- +migrate Down
DROP TABLE "Source";