Skip to content

Instantly share code, notes, and snippets.

View Leodimatt's full-sized avatar
👋

Leonardo Di Matteo Leodimatt

👋
  • Germany
  • 06:24 (UTC +02:00)
View GitHub Profile
@Leodimatt
Leodimatt / Setup.sql
Created July 7, 2025 17:32
Case Study - Datenmanagement
CREATE TABLE subscriptions
(
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
requests INTEGER NOT NULL,
tokens INTEGER NOT NULL,
billing_start DATE NOT NULL,
billing_end DATE NOT NULL
);