Files
georm/migrations/sqlite/20250609181248_composite-key.up.sql
T

8 lines
234 B
SQL
Raw Normal View History

-- Add up migration script here
CREATE TABLE UserRoles (
user_id INTEGER NOT NULL,
role_id INTEGER NOT NULL,
assigned_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%fZ', 'now')),
PRIMARY KEY (user_id, role_id)
);