Fixes for schema

This commit is contained in:
David Bomba 2024-10-05 07:49:04 +10:00
parent c671f87222
commit dd086b651d
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,3 @@
/*!999999\- enable the sandbox mode */
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
@ -2413,6 +2412,7 @@ CREATE TABLE `vendors` (
`language_id` int(10) unsigned DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`classification` varchar(191) DEFAULT NULL,
`is_tax_exempt` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `vendors_company_id_number_unique` (`company_id`,`number`),
KEY `vendors_company_id_deleted_at_index` (`company_id`,`deleted_at`),
@ -2454,7 +2454,6 @@ CREATE TABLE `webhooks` (
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!999999\- enable the sandbox mode */
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'2014_10_12_100000_create_password_resets_table',1);
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (2,'2014_10_13_000000_create_users_table',1);
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (3,'2019_11_10_115926_create_failed_jobs_table',1);
@ -2712,3 +2711,4 @@ INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (254,'2024_09_16_22
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (255,'2024_09_21_062105_2024_09_21_add_vn_lang',3);
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (256,'2024_09_22_084749_2024_09_23_add_sync_column_for_qb',3);
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (257,'2024_09_29_221552_add_gateway_fee_column',4);
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (258,'2024_10_03_235524_add_is_tax_exempt_vendors_table',5);