Tlapbot/tlapbot/schema.sql

7 lines
120 B
SQL

DROP TABLE IF EXISTS points;
CREATE TABLE points (
id TEXT PRIMARY KEY,
username TEXT NOT NULL,
points INTEGER
);