Lines 3622-3627
CREATE TABLE audio_alerts (
Link Here
|
3622 |
KEY precedence (precedence) |
3622 |
KEY precedence (precedence) |
3623 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
3623 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
3624 |
|
3624 |
|
|
|
3625 |
-- |
3626 |
-- Table structure for table 'library_groups' |
3627 |
-- |
3628 |
|
3629 |
CREATE TABLE library_groups ( |
3630 |
id INT(11) NOT NULL auto_increment, -- unique id for each group |
3631 |
parent_id INT(11) NULL DEFAULT NULL, -- if this is a child group, the id of the parent group |
3632 |
branchcode VARCHAR(10) NULL DEFAULT NULL, -- The branchcode of a branch belonging to the parent group |
3633 |
title VARCHAR(100) NULL DEFAULT NULL, -- Short description of the goup |
3634 |
description TEXT NULL DEFAULT NULL, -- Longer explanation of the group, if necessary |
3635 |
created_on DATETIME NOT NULL, -- Date and time of creation |
3636 |
updated_on DATETIME NULL DEFAULT NULL, -- Date and time of last |
3637 |
PRIMARY KEY id ( id ), |
3638 |
FOREIGN KEY (parent_id) REFERENCES library_groups(id) ON UPDATE CASCADE ON DELETE CASCADE, |
3639 |
FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON UPDATE CASCADE ON DELETE CASCADE |
3640 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
3641 |
|
3625 |
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; |
3642 |
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; |
3626 |
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; |
3643 |
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; |
3627 |
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; |
3644 |
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; |
3628 |
- |
|
|