File: 20040826.sql

package info (click to toggle)
gforge 4.5.14-22etch13
  • links: PTS
  • area: main
  • in suites: etch
  • size: 13,004 kB
  • ctags: 11,918
  • sloc: php: 36,047; sql: 29,050; sh: 10,538; perl: 6,496; xml: 3,810; makefile: 341; python: 263; ansic: 256
file content (28 lines) | stat: -rw-r--r-- 1,414 bytes parent folder | download | duplicates (3)
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
CREATE SEQUENCE "artifact_group_selection_box_list_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
CREATE TABLE "artifact_group_selection_box_list" (
	"id" integer DEFAULT nextval('"artifact_group_selection_box_list_id_seq"'::text)NOT NULL,
	"group_artifact_id" integer NOT NULL,
	"selection_box_name" text NOT NULL,
	Constraint "artifact_group_selection_box_list_pkey" Primary Key ("id")
);
SELECT setval ('"artifact_group_selection_box_list_id_seq"',100,true);
	
CREATE SEQUENCE "artifact_group_selection_box_options_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
CREATE TABLE "artifact_group_selection_box_options" (
	"id" integer DEFAULT nextval('"artifact_group_selection_box_options_id_seq"'::text)NOT NULL,
	"artifact_box_id" integer NOT NULL,
	"box_options_name" text NOT NULL,
	Constraint "artifact_group_selection_box_options_pkey" Primary Key ("id")
);
SELECT setval ('"artifact_group_selection_box_options_id_seq"',100,true);


CREATE SEQUENCE "artifact_extra_field_data_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
CREATE TABLE "artifact_extra_field_data" (
	"id" integer DEFAULT nextval('"artifact_extra_field_data_id_seq"'::text)NOT NULL,
	"artifact_id" integer NOT NULL,
	"choice_id" integer NOT NULL,
	Constraint "artifact_extra_field_data_pkey" Primary Key ("id")
);
SELECT setval ('"artifact_extra_field_data_id_seq"',100,true);