This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/migrations/001_initial_schema.up.sql
Tim 5166f216d7
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Failing after 4s
#109 begin migration
2024-08-21 23:33:06 +02:00

9 lines
143 B
SQL

CREATE TABLE workout (
user_id INTEGER NOT NULL,
date TEXT NOT NULL,
type TEXT NOT NULL,
sets INTEGER NOT NULL,
reps INTEGER NOT NULL
);