I have a second problem in version 3.3 when adding units
Since I cannot add and the message appears attached to the picture
View attachment 22917View attachment 22918
Run THIS QUERY IN YOUR DB
DROP TABLE IF EXISTS `property_units`;
CREATE TABLE `property_units` (
`id` bigint(20) UNSIGNED NOT NULL,
`property_id` bigint(20) UNSIGNED NOT NULL,
`unit_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bedroom` int(11) NOT NULL,
`bath` int(11) NOT NULL,
`kitchen` int(11) NOT NULL,
`square_feet` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`amenities` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`condition` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`parking` int(11) NOT NULL,
`description` varchar(800) COLLATE utf8mb4_unicode_ci NOT NULL,
`general_rent` decimal(12,2) DEFAULT '0.00',
`security_deposit_type` tinyint(4) DEFAULT '0',
`security_deposit` decimal(12,2) DEFAULT '0.00',
`late_fee_type` tinyint(4) DEFAULT '0',
`late_fee` decimal(12,2) DEFAULT '0.00',
`incident_receipt` decimal(12,2) DEFAULT '0.00',
`rent_type` tinyint(4) DEFAULT NULL COMMENT '1=monthly,2=yearly,3=custom',
`monthly_due_day` int(11) DEFAULT NULL,
`yearly_due_day` int(11) DEFAULT NULL,
`lease_start_date` date DEFAULT NULL,
`lease_end_date` date DEFAULT NULL,
`lease_payment_due_date` date DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;