Initial open-source release: Aura CRM platform (core + production)

This commit is contained in:
Open Source Release
2026-08-19 08:35:21 +00:00
commit e8d037bef3
515 changed files with 64691 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
-- +goose Up
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
CREATE TABLE staff_users (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT NOT NULL,
email TEXT UNIQUE NOT NULL,
password_hash TEXT NOT NULL,
role TEXT NOT NULL DEFAULT 'master' CHECK (role IN ('owner', 'manager', 'master')),
is_active BOOLEAN NOT NULL DEFAULT TRUE,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
last_login_at TIMESTAMPTZ
);