38808-vm/db/migrations/019_add_accounts_table.sql
2026-03-11 17:54:07 +00:00

6 lines
204 B
SQL

CREATE TABLE IF NOT EXISTS accounting_accounts (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
type ENUM('Assets', 'Liabilities', 'Equity', 'Revenue', 'Expenses') NOT NULL
);