View | Details | Raw Unified | Return to bug 16223
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 4970-4976 CREATE TABLE `restriction_types` ( Link Here
4970
  `is_system` tinyint(1) NOT NULL DEFAULT 0,
4970
  `is_system` tinyint(1) NOT NULL DEFAULT 0,
4971
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
4971
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
4972
  `lift_after_payment` tinyint(1) NOT NULL DEFAULT 0,
4972
  `lift_after_payment` tinyint(1) NOT NULL DEFAULT 0,
4973
  `fee_limit` decimal(28,6) DEFAULT NULL
4973
  `fee_limit` decimal(28,6) DEFAULT NULL,
4974
  PRIMARY KEY (`code`)
4974
  PRIMARY KEY (`code`)
4975
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4975
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4976
/*!40101 SET character_set_client = @saved_cs_client */;
4976
/*!40101 SET character_set_client = @saved_cs_client */;
4977
- 

Return to bug 16223