瀏覽代碼

标签表模型

lizeyu 10 月之前
父節點
當前提交
e30d7149b7
共有 3 個文件被更改,包括 2779 次插入1578 次删除
  1. 1466 789
      doc/就业驿站管理系统.pdb
  2. 1300 789
      doc/就业驿站管理系统.pdm
  3. 13 0
      doc/待更新脚本

文件差異過大導致無法顯示
+ 1466 - 789
doc/就业驿站管理系统.pdb


文件差異過大導致無法顯示
+ 1300 - 789
doc/就业驿站管理系统.pdm


+ 13 - 0
doc/待更新脚本

@@ -1082,3 +1082,16 @@ INSERT INTO pc_workcategory VALUES ('20201206001', '20201206000', '普工', 1046
 INSERT INTO pc_workcategory VALUES ('20201207001', '20201207000', '社会工作者', 1047, 1);
 INSERT INTO pc_workcategory VALUES ('20201207002', '20201207000', '在校学生', 1048, 1);
 INSERT INTO pc_workcategory VALUES ('20201207003', '20201207000', '志愿者', 1049, 1);
+
+-- 2024.5.9标签关系表外键索引
+delete from pc_label_company;
+alter table pc_label_company add constraint FK_Reference_30 foreign key (LabelID)
+      references pc_label (LabelID) on delete restrict on update restrict;
+
+delete from pc_label_jobuser;
+alter table pc_label_jobuser add constraint FK_Reference_29 foreign key (LabelID)
+      references pc_label (LabelID) on delete restrict on update restrict;
+
+delete from pc_label_post;
+alter table pc_label_post add constraint FK_Reference_31 foreign key (LabelID)
+      references pc_label (LabelID) on delete restrict on update restrict;