LibrePortal/containers/moneyapp/app/drizzle/0000_fresh_silverclaw.sql
librelad 875a60f90f LibrePortal v0.1.0 — initial release
A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys,
Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun
VPN routing, and a web dashboard to manage it all.

Free & open forever to self-host; optional paid hosted services fund it.
See PROMISE.md.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

Signed-off-by: librelad <librelad@digitalangels.vip>
2026-05-21 20:37:54 +01:00

187 lines
7.9 KiB
SQL

CREATE TABLE `auth_accounts` (
`user_id` text NOT NULL,
`type` text NOT NULL,
`provider` text NOT NULL,
`provider_account_id` text NOT NULL,
`refresh_token` text,
`access_token` text,
`expires_at` integer,
`token_type` text,
`scope` text,
`id_token` text,
`session_state` text,
PRIMARY KEY(`provider`, `provider_account_id`),
FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `bank_accounts` (
`id` text PRIMARY KEY NOT NULL,
`household_id` text NOT NULL,
`owner_user_id` text,
`name` text NOT NULL,
`type` text DEFAULT 'current' NOT NULL,
`currency` text DEFAULT 'GBP' NOT NULL,
`opening_balance_minor` integer DEFAULT 0 NOT NULL,
`opening_date` text NOT NULL,
`is_shared` integer DEFAULT false NOT NULL,
`is_archived` integer DEFAULT false NOT NULL,
`color` text,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`owner_user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE set null
);
--> statement-breakpoint
CREATE INDEX `bank_accounts_household_idx` ON `bank_accounts` (`household_id`);--> statement-breakpoint
CREATE TABLE `bank_connections` (
`id` text PRIMARY KEY NOT NULL,
`household_id` text NOT NULL,
`provider` text NOT NULL,
`provider_institution_id` text,
`status` text DEFAULT 'pending' NOT NULL,
`access_token_encrypted` text,
`refresh_token_encrypted` text,
`expires_at` integer,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `budgets` (
`id` text PRIMARY KEY NOT NULL,
`household_id` text NOT NULL,
`category_id` text NOT NULL,
`period` text DEFAULT 'monthly' NOT NULL,
`amount_minor` integer NOT NULL,
`start_date` text NOT NULL,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`category_id`) REFERENCES `categories`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE INDEX `budgets_household_idx` ON `budgets` (`household_id`);--> statement-breakpoint
CREATE TABLE `categories` (
`id` text PRIMARY KEY NOT NULL,
`household_id` text NOT NULL,
`name` text NOT NULL,
`kind` text DEFAULT 'expense' NOT NULL,
`color` text,
`icon` text,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE INDEX `categories_household_idx` ON `categories` (`household_id`);--> statement-breakpoint
CREATE TABLE `households` (
`id` text PRIMARY KEY NOT NULL,
`name` text NOT NULL,
`base_currency` text DEFAULT 'GBP' NOT NULL,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL
);
--> statement-breakpoint
CREATE TABLE `recurring_rules` (
`id` text PRIMARY KEY NOT NULL,
`household_id` text NOT NULL,
`bank_account_id` text NOT NULL,
`category_id` text,
`description` text NOT NULL,
`amount_minor` integer NOT NULL,
`rrule` text NOT NULL,
`start_date` text NOT NULL,
`end_date` text,
`is_active` integer DEFAULT true NOT NULL,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`category_id`) REFERENCES `categories`(`id`) ON UPDATE no action ON DELETE set null
);
--> statement-breakpoint
CREATE INDEX `recurring_rules_household_idx` ON `recurring_rules` (`household_id`);--> statement-breakpoint
CREATE INDEX `recurring_rules_account_idx` ON `recurring_rules` (`bank_account_id`);--> statement-breakpoint
CREATE TABLE `savings_goals` (
`id` text PRIMARY KEY NOT NULL,
`household_id` text NOT NULL,
`bank_account_id` text,
`name` text NOT NULL,
`target_amount_minor` integer NOT NULL,
`current_amount_minor` integer DEFAULT 0 NOT NULL,
`target_date` text,
`monthly_contribution_minor` integer DEFAULT 0 NOT NULL,
`annual_interest_rate_bp` integer DEFAULT 0 NOT NULL,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts`(`id`) ON UPDATE no action ON DELETE set null
);
--> statement-breakpoint
CREATE INDEX `goals_household_idx` ON `savings_goals` (`household_id`);--> statement-breakpoint
CREATE TABLE `sessions` (
`session_token` text PRIMARY KEY NOT NULL,
`user_id` text NOT NULL,
`expires` integer NOT NULL,
FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `splits` (
`id` text PRIMARY KEY NOT NULL,
`transaction_id` text NOT NULL,
`user_id` text NOT NULL,
`share_minor` integer NOT NULL,
FOREIGN KEY (`transaction_id`) REFERENCES `transactions`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE INDEX `splits_transaction_idx` ON `splits` (`transaction_id`);--> statement-breakpoint
CREATE TABLE `transactions` (
`id` text PRIMARY KEY NOT NULL,
`household_id` text NOT NULL,
`bank_account_id` text NOT NULL,
`category_id` text,
`recurring_rule_id` text,
`date` text NOT NULL,
`amount_minor` integer NOT NULL,
`description` text NOT NULL,
`notes` text,
`status` text DEFAULT 'posted' NOT NULL,
`source` text DEFAULT 'manual' NOT NULL,
`external_id` text,
`created_by_user_id` text,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`category_id`) REFERENCES `categories`(`id`) ON UPDATE no action ON DELETE set null,
FOREIGN KEY (`recurring_rule_id`) REFERENCES `recurring_rules`(`id`) ON UPDATE no action ON DELETE set null,
FOREIGN KEY (`created_by_user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE set null
);
--> statement-breakpoint
CREATE INDEX `transactions_household_date_idx` ON `transactions` (`household_id`,`date`);--> statement-breakpoint
CREATE INDEX `transactions_account_date_idx` ON `transactions` (`bank_account_id`,`date`);--> statement-breakpoint
CREATE INDEX `transactions_rule_idx` ON `transactions` (`recurring_rule_id`);--> statement-breakpoint
CREATE INDEX `transactions_external_idx` ON `transactions` (`external_id`);--> statement-breakpoint
CREATE TABLE `users` (
`id` text PRIMARY KEY NOT NULL,
`name` text,
`email` text NOT NULL,
`email_verified` integer,
`image` text,
`password_hash` text,
`household_id` text,
`role` text DEFAULT 'member' NOT NULL,
`created_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
`updated_at` integer DEFAULT (unixepoch() * 1000) NOT NULL,
FOREIGN KEY (`household_id`) REFERENCES `households`(`id`) ON UPDATE no action ON DELETE set null
);
--> statement-breakpoint
CREATE UNIQUE INDEX `users_email_unique` ON `users` (`email`);--> statement-breakpoint
CREATE TABLE `verification_tokens` (
`identifier` text NOT NULL,
`token` text NOT NULL,
`expires` integer NOT NULL,
PRIMARY KEY(`identifier`, `token`)
);