solcrypt/server/migrations/2024-07-27-124950_add-clients/up.sql

7 lines
134 B
MySQL
Raw Permalink Normal View History

2024-07-27 20:26:57 +03:00
-- Your SQL goes here
CREATE TABLE CLIENTS (
ID SERIAL PRIMARY KEY,
GID INTEGER NOT NULL,
PAID BOOLEAN NOT NULL DEFAULT FALSE
)