Files
Jay Brown 35d72fccbe Merged in feature/remove-mocks (pull request #202)
Feature/remove mocks

* remove mocks

* cleanup db migrations
2026-01-15 20:39:32 +00:00

13 lines
318 B
SQL

CREATE TABLE clients (
clientId varchar(255) primary key,
name TEXT not null,
UNIQUE (name)
);
CREATE TABLE clientCanSync (
syncId uuid primary key DEFAULT uuid_generate_v7(),
clientId varchar(255) not null,
canSync boolean not null,
foreign key (clientId) references clients(clientId)
);