/[scire]/docs/scire3.sql
Gentoo

Contents of /docs/scire3.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 52 - (show annotations) (download)
Fri May 5 14:43:51 2006 UTC (7 years ago) by agaffney
File size: 569 byte(s)
rename moria/ to docs/
1 drop table if exists user_pref;
2 create table user_pref (
3 user_id INT NOT NULL,
4 jobs_layout VARCHAR(250),
5 jobs_fields VARCHAR(250),
6 PRIMARY KEY (user_id)
7 ) Type=MyISAM;
8 --example. user_id = 1234
9 -- jobs_layout = csv of field_ids = "5,7,8,1,2,55,24"
10 -- jobs_fields = csv of sort order+direction. 0 = not sorted. = "0a,0a,1d,3a,2d,0a,0a"
11
12 drop table if exists jobs_fields;
13 create table jobs_fields (
14 field_id INT NOT NULL,
15 field_name VARCHAR(50),
16 field_desc VARCHAR(200),
17 PRIMARY KEY (field_id)
18 ) Type=MyISAM;
19 --example (5, "Priority", "Shows the priority of the job.")
20

  ViewVC Help
Powered by ViewVC 1.1.13