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/migration/001_initial_schema.up.sql
Tim 955ba59eb0
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Failing after 5s
chore: #123 unify metrics, logs, variable names and structure
2024-09-02 23:31:22 +02:00

10 lines
144 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
);