-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReferrerTypeTable.pm
More file actions
42 lines (41 loc) · 1.15 KB
/
ReferrerTypeTable.pm
File metadata and controls
42 lines (41 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright(c) 2003-2007 Robert L. Brown. This is licensed software
# only to be used with an explicit right-to-use license from the
# copyright holder.
%::ReferrerTypeTable = (
table => "referrer_type",
heading => "Referrer Types",
label => "name",
columns => [
{
column => "id",
type => "pk",
},
{
column => "name",
heading => "Name",
help => "Type of referrer.",
},
{
column => "url",
heading => "URL",
type => "url",
help => "A full URL to the job description document for this opening. The URL must refer to a standard HTML document without Microsoft Word change tracking enabled."
},
{
column => "status",
heading => "Status",
type => "enum",
},
{
column => "department_id",
heading => "Department",
type => "fk",
values => {
table => \%::DepartmentTable,
pk => "id",
label => "name",
},
},
],
);
1;