From f8bc2ee4b47ccf83976ce86ff192cc4e4ef2fef9 Mon Sep 17 00:00:00 2001 From: Andrew Malsbury Date: Sat, 7 Oct 2023 16:15:02 +0000 Subject: [PATCH] Add "account_type" to accounts table --- db.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db.sql b/db.sql index 0734cb0f..520b39e0 100644 --- a/db.sql +++ b/db.sql @@ -28,6 +28,7 @@ CREATE TABLE `accounts` ( `opening_balance` decimal(15,2) NOT NULL DEFAULT 0.00, `account_currency_code` varchar(200) NOT NULL, `account_notes` text DEFAULT NULL, + `account_type` int(6) NOT NULL DEFAULT 11, `account_created_at` datetime NOT NULL DEFAULT current_timestamp(), `account_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(), `account_archived_at` datetime DEFAULT NULL,