Files
inventory/inventory-server/auth/schema.sql
2025-02-14 09:10:15 -05:00

6 lines
173 B
SQL

CREATE TABLE users (
id SERIAL PRIMARY KEY,
username VARCHAR(255) NOT NULL UNIQUE,
password VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);