mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Update db.sql
Fix bug introduced in account type table
This commit is contained in:
2
db.sql
2
db.sql
@@ -28,7 +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 NULL,
|
||||
`account_type` int(6) NOT NULL DEFAULT 0,
|
||||
`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,
|
||||
|
||||
Reference in New Issue
Block a user