MDL-10234
[moodle-linuxchix.git] / mod / data / db / postgres7.sql
blobe5413dca8d73f91b93b6f4204c7917c6e34a6021
2 CREATE TABLE prefix_data (
3   id SERIAL PRIMARY KEY,
4   course integer NOT NULL default '0',
5   name varchar(255) NOT NULL default '',
6   intro text NOT NULL default '',
7   comments integer NOT NULL default '0',
8   timeavailablefrom integer NOT NULL default '0',
9   timeavailableto integer NOT NULL default '0',
10   timeviewfrom integer NOT NULL default '0',
11   timeviewto integer NOT NULL default '0',
12   requiredentries integer NOT NULL default '0',
13   requiredentriestoview integer NOT NULL default '0',
14   maxentries integer NOT NULL default '0',
15   rssarticles integer NOT NULL default '0',
16   singletemplate text,
17   listtemplate text,
18   listtemplateheader text,
19   listtemplatefooter text,
20   addtemplate text,
21   rsstemplate text,
22   rsstitletemplate text,
23   csstemplate text,
24   jstemplate text,
25   approval integer NOT NULL default '0',
26   scale integer NOT NULL default '0',
27   assessed integer NOT NULL default '0',
28   defaultsort integer NOT NULL default '0',
29   defaultsortdir integer NOT NULL default '0',
30   editany integer NOT NULL default '0'
35 CREATE TABLE prefix_data_content (
36   id SERIAL PRIMARY KEY,
37   fieldid integer NOT NULL default '0',
38   recordid integer NOT NULL default '0',
39   content text,
40   content1 text,
41   content2 text,
42   content3 text,
43   content text4
47 CREATE TABLE prefix_data_fields (
48   id SERIAL PRIMARY KEY,
49   dataid integer NOT NULL default '0',
50   type varchar(255) NOT NULL default '',
51   name varchar(255) NOT NULL default '',
52   description text NOT NULL default '',
53   param1 text,
54   param2 text,
55   param3 text,
56   param4 text,
57   param5 text,
58   param6 text,
59   param7 text,
60   param8 text,
61   param9 text,
62   param10 text
65 CREATE TABLE prefix_data_records (
66   id SERIAL PRIMARY KEY,
67   userid integer NOT NULL default '0',
68   groupid integer NOT NULL default '0',
69   dataid integer NOT NULL default '0',
70   timecreated integer NOT NULL default '0',
71   timemodified integer NOT NULL default '0',
72   approved integer NOT NULL default '0'
76 CREATE TABLE prefix_data_comments (
77   id SERIAL PRIMARY KEY,
78   userid integer NOT NULL default '0',
79   recordid integer NOT NULL default '0',
80   content text NOT NULL default '',
81   created integer NOT NULL default '0',
82   modified integer NOT NULL default '0'
86 CREATE TABLE prefix_data_ratings (
87   id SERIAL PRIMARY KEY,
88   userid integer NOT NULL default '0',
89   recordid integer NOT NULL default '0',
90   rating integer NOT NULL default '0'
93 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'view', 'data', 'name');
94 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'add', 'data', 'name');
95 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'update', 'data', 'name');
96 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'record delete', 'data', 'name');
97 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'fields add', 'data_fields', 'name');
98 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'fields update', 'data_fields', 'name');
99 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'templates saved', 'data', 'name');
100 INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'templates def', 'data', 'name');