diff options
author | M.Gergo | 2020-03-16 23:29:28 +0100 |
---|---|---|
committer | M.Gergo | 2020-03-16 23:29:28 +0100 |
commit | c3cbdd8305d2c46a6a18fc4f1fcc3a3f3f127029 (patch) | |
tree | 0381667179713a267488512d43795e3c77efb191 /mayor-orig/mayor-naplo/install | |
parent | 6cdef5739ed7e029d4631b849f157462e64bd045 (diff) | |
download | mayor-c3cbdd8305d2c46a6a18fc4f1fcc3a3f3f127029.tar.gz mayor-c3cbdd8305d2c46a6a18fc4f1fcc3a3f3f127029.zip |
Rev: 4620rev4620
Diffstat (limited to 'mayor-orig/mayor-naplo/install')
-rw-r--r-- | mayor-orig/mayor-naplo/install/module-naplo/mysql/tanev.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mayor-orig/mayor-naplo/install/module-naplo/mysql/tanev.sql b/mayor-orig/mayor-naplo/install/module-naplo/mysql/tanev.sql index ad1abcff..eeaca556 100644 --- a/mayor-orig/mayor-naplo/install/module-naplo/mysql/tanev.sql +++ b/mayor-orig/mayor-naplo/install/module-naplo/mysql/tanev.sql @@ -143,6 +143,15 @@ CREATE TABLE `ora` ( CONSTRAINT `ora_ibfk_5` FOREIGN KEY (`feladatTipusId`) REFERENCES `%DB%`.`feladatTipus` (`feladatTipusId`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_hungarian_ci ; +CREATE TABLE `oraHazifeladat` ( + `hazifeladatId` int(10) unsigned NOT NULL AUTO_INCREMENT, + `oraId` int(10) unsigned DEFAULT NULL, + `hazifeladatLeiras` text COLLATE utf8_hungarian_ci NOT NULL, + PRIMARY KEY (`hazifeladatId`), + UNIQUE KEY `oraId` (`oraId`), + CONSTRAINT `oraHazifeladat_ibfk_1` FOREIGN KEY (`oraId`) REFERENCES `ora` (`oraId`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_hungarian_ci; + CREATE TABLE `orarendiOraTankor` ( `tanarId` int(10) unsigned NOT NULL, `osztalyJel` varchar(7) COLLATE utf8_bin NOT NULL, |