4
0
Fork 0
mirror of https://github.com/zzzzDev4/ias-tea-axum.git synced 2025-04-21 07:41:21 +02:00
backend/migrations/0001_init.sql
2024-05-03 01:30:37 +02:00

7 lines
No EOL
166 B
SQL

CREATE TABLE IF NOT EXISTS tea (
id serial PRIMARY KEY,
teaname VARCHAR(128) NOT NULL,
rfidcode VARCHAR(128) NOT NULL,
watertemp INT,
steepingseconds INT
);