Update test app for new grid picker classes.
This commit is contained in:
@@ -75,7 +75,9 @@ CREATE TABLE tbl1 (
|
||||
combo1x character varying(50),
|
||||
date1 date,
|
||||
spin1 integer DEFAULT 3,
|
||||
rand1 integer DEFAULT round((random() * (10000000)::double precision)) NOT NULL
|
||||
rand1 integer DEFAULT round((random() * (10000000)::double precision)) NOT NULL,
|
||||
json1 jsonb,
|
||||
xml1 text
|
||||
);
|
||||
|
||||
|
||||
@@ -116,7 +118,9 @@ CREATE TABLE tbl2 (
|
||||
combo2x character varying(50),
|
||||
date2 date,
|
||||
spin2 integer DEFAULT 5,
|
||||
rand1 integer
|
||||
rand1 integer,
|
||||
json2 jsonb,
|
||||
xml2 text
|
||||
);
|
||||
|
||||
|
||||
|
||||
@@ -13,6 +13,8 @@ CREATE TABLE tbl2 (
|
||||
"date2" TEXT,
|
||||
"spin2" INTEGER DEFAULT 5,
|
||||
"rand1" INTEGER NOT NULL DEFAULT (abs(random())),
|
||||
"json2" TEXT,
|
||||
"xml2" TEXT,
|
||||
foreign key (combo2t) references list1(id_list1),
|
||||
foreign key (pk1) references tbl1(pk1)
|
||||
);
|
||||
@@ -25,7 +27,9 @@ CREATE TABLE tbl1 (
|
||||
"combo1x" TEXT,
|
||||
"date1" TEXT,
|
||||
"spin1" INTEGER DEFAULT 3,
|
||||
"rand1" INTEGER NOT NULL DEFAULT (abs(random()))
|
||||
"rand1" INTEGER NOT NULL DEFAULT (abs(random())),
|
||||
"json1" TEXT,
|
||||
"xml1" TEXT
|
||||
);
|
||||
|
||||
INSERT INTO List1 VALUES(1, 'List1Item1');
|
||||
|
||||
Reference in New Issue
Block a user