mirror of
https://github.com/kristoferssolo/Axium.git
synced 2025-10-21 16:00:34 +00:00
6 lines
243 B
SQL
6 lines
243 B
SQL
CREATE TABLE usage (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
endpoint VARCHAR(255) NOT NULL,
|
|
user_id UUID NOT NULL REFERENCES users(id),
|
|
creation_date DATE NOT NULL DEFAULT CURRENT_DATE -- Default to the current date
|
|
); |