Show pageOld revisionsBacklinksExport to PDFFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== pears.VacancyKeyWords ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **VacancyID** | char(20) | NOT NULL | | | | RefreshRequired | tinyint | NOT NULL | 0 | | | StandardKeyWords | long varchar | NULL | | | | TagKeyWords | long varchar | NULL | | | | CustomKeyWords | long varchar | NULL | | | | TagRefreshRequired | tinyint | NOT NULL | 0 | | | CustomRefreshRequired | tinyint | NOT NULL | 0 | | ===== Primary Key ===== * VacancyID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | VacancyKeyWords_Refresh | Index | RefreshRequired | | | VacancyKeyWords_TagRefresh | Index | TagRefreshRequired | | | VacancyKeyWords_CustomRefresh | Index | CustomRefreshRequired | | | VacancyKeyWords_Text | Text index | StandardKeyWords, TagKeyWords, CustomKeyWords | CONFIGURATION "SYS"."default_char" IMMEDIATE REFRESH | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."VacancyKeyWords" -- Table comment: -- Statement count: 5 CREATE TABLE "pears"."VacancyKeyWords" ( "VacancyID" char(20) NOT NULL ,"RefreshRequired" tinyint NOT NULL DEFAULT 0 ,"StandardKeyWords" long varchar NULL ,"TagKeyWords" long varchar NULL ,"CustomKeyWords" long varchar NULL ,"TagRefreshRequired" tinyint NOT NULL DEFAULT 0 ,"CustomRefreshRequired" tinyint NOT NULL DEFAULT 0 ,PRIMARY KEY ("VacancyID" ASC) ) go CREATE INDEX "VacancyKeyWords_Refresh" ON "pears"."VacancyKeyWords" ( "RefreshRequired" ) go CREATE INDEX "VacancyKeyWords_TagRefresh" ON "pears"."VacancyKeyWords" ( "TagRefreshRequired" ) go CREATE INDEX "VacancyKeyWords_CustomRefresh" ON "pears"."VacancyKeyWords" ( "CustomRefreshRequired" ) go CREATE TEXT INDEX "VacancyKeyWords_Text" ON "pears"."VacancyKeyWords" ( "StandardKeyWords","TagKeyWords","CustomKeyWords" ) CONFIGURATION "SYS"."default_char" IMMEDIATE REFRESH go </code> database/tables/pears_vacancykeywords.txt Last modified: 2026/08/07 19:24by 127.0.0.1