Files
ticketsystem/migrations/20260422094717_user_table.sql
schn33fuchs 8b34dac813 Added functions for adding, deleting and showing tickets
As said, functions got implemented. Also minor changes to migration
layout and dependencies
2026-04-22 20:40:28 +02:00

7 lines
175 B
SQL

CREATE TABLE users (
id SMALLINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
name VARCHAR(30),
firstname VARCHAR(30),
is_admin BOOLEAN NOT NULL DEFAULT false
);