mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Fix Regression that broke setup, set company currency default to USD if not set
This commit is contained in:
4
db.sql
4
db.sql
@@ -554,7 +554,7 @@ CREATE TABLE `companies` (
|
||||
`company_website` varchar(200) DEFAULT NULL,
|
||||
`company_logo` varchar(250) DEFAULT NULL,
|
||||
`company_locale` varchar(200) DEFAULT NULL,
|
||||
`company_currency` varchar(200) NOT NULL,
|
||||
`company_currency` varchar(200) DEFAULT 'USD',
|
||||
`company_tax_id` varchar(200) DEFAULT NULL,
|
||||
`company_created_at` datetime NOT NULL DEFAULT current_timestamp(),
|
||||
`company_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
|
||||
@@ -2590,4 +2590,4 @@ CREATE TABLE `vendors` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-06-17 22:44:10
|
||||
-- Dump completed on 2025-06-21 18:33:02
|
||||
|
||||
Reference in New Issue
Block a user