Files
helloasso/api/db.sql
darkstack 7d18b5dc2e Split API / Webpage
We use react as a webpage, so it can be served either on OBS or on the
server.
2023-09-18 00:52:42 +02:00

7 lines
99 B
SQL

CREATE TABLE orders (
id INTEGER NOT NULL UNIQUE,
amount REAL NOT NULL,
message TEXT,
name TEXT
);