Files
lunarfront-app/packages/backend/src/db/migrations/0041_app_settings.sql
Ryan Moon 24ddb17ca8
All checks were successful
Build & Release / build (push) Successful in 17s
fix: rename migration 0039_app_settings to 0041 to avoid conflict with 0039_cash-rounding
2026-04-05 10:58:59 -05:00

9 lines
260 B
SQL

CREATE TABLE IF NOT EXISTS "app_settings" (
"key" varchar(100) PRIMARY KEY,
"value" text,
"is_encrypted" boolean NOT NULL DEFAULT false,
"iv" text,
"created_at" timestamptz NOT NULL DEFAULT now(),
"updated_at" timestamptz NOT NULL DEFAULT now()
);