Lines 3723-3728
CREATE TABLE IF NOT EXISTS edifact_ean (
Link Here
|
3723 |
CONSTRAINT efk_branchcode FOREIGN KEY ( branchcode ) REFERENCES branches ( branchcode ) |
3723 |
CONSTRAINT efk_branchcode FOREIGN KEY ( branchcode ) REFERENCES branches ( branchcode ) |
3724 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
3724 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
3725 |
|
3725 |
|
|
|
3726 |
-- |
3727 |
-- Table structure for table 'library_groups' |
3728 |
-- |
3729 |
|
3730 |
CREATE TABLE library_groups ( |
3731 |
id INT(11) NOT NULL auto_increment, -- unique id for each group |
3732 |
parent_id INT(11) NULL DEFAULT NULL, -- if this is a child group, the id of the parent group |
3733 |
branchcode VARCHAR(10) NULL DEFAULT NULL, -- The branchcode of a branch belonging to the parent group |
3734 |
title VARCHAR(100) NULL DEFAULT NULL, -- Short description of the goup |
3735 |
description TEXT NULL DEFAULT NULL, -- Longer explanation of the group, if necessary |
3736 |
created_on DATETIME NOT NULL, -- Date and time of creation |
3737 |
updated_on DATETIME NULL DEFAULT NULL, -- Date and time of last |
3738 |
PRIMARY KEY id ( id ), |
3739 |
FOREIGN KEY (parent_id) REFERENCES library_groups(id) ON UPDATE CASCADE ON DELETE CASCADE, |
3740 |
FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON UPDATE CASCADE ON DELETE CASCADE |
3741 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
3742 |
|
3726 |
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; |
3743 |
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; |
3727 |
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; |
3744 |
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; |
3728 |
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; |
3745 |
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; |
3729 |
- |
|
|