File: 20040826.sql

package info (click to toggle)
fusionforge 5.3.2%2B20141104-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 60,472 kB
  • sloc: php: 271,846; sql: 36,817; python: 14,575; perl: 6,406; sh: 5,980; xml: 4,294; pascal: 1,411; makefile: 911; cpp: 52; awk: 27
file content (28 lines) | stat: -rw-r--r-- 1,412 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);