File indexing completed on 2024-04-21 06:00:37

0001 CREATE TABLE `section_support` (
0002         `section_support_id` INT NOT NULL AUTO_INCREMENT,
0003         `support_id` INT NULL,
0004         `section_id` INT NULL,
0005         `amount` DOUBLE NULL DEFAULT NULL,
0006         `tier` DOUBLE NULL DEFAULT NULL,
0007         `period` VARCHAR(1) NULL DEFAULT 'Y',
0008         `period_frequency` INT NULL DEFAULT '1',
0009         `is_active` INT NULL DEFAULT '1',
0010         `created_at` DATETIME NULL,
0011         `changed_at` DATETIME NULL,
0012         `deleted_at` DATETIME NULL,
0013         PRIMARY KEY (`section_support_id`)
0014 )
0015 COLLATE='latin1_swedish_ci'
0016 ;
0017