You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
538B

  1. -- Update 2023-01-19
  2. CREATE TABLE IF NOT EXISTS `arlista_manager_axico_id_warranty` (
  3. `axico_id_name` varchar(128) DEFAULT NULL,
  4. `default_warranty` int NOT NULL,
  5. `created_at` datetime NOT NULL,
  6. `created_by` int NOT NULL,
  7. `modified_by` int DEFAULT NULL,
  8. `modified_at` datetime DEFAULT NULL,
  9. `deleted_at` datetime DEFAULT NULL,
  10. `id` int NOT NULL AUTO_INCREMENT,
  11. `status` tinyint NOT NULL DEFAULT '1',
  12. `sif` varchar(32) DEFAULT NULL,
  13. primary key (id)
  14. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;