| 1 |
-- |
|---|
| 2 |
-- PostgreSQL database dump |
|---|
| 3 |
-- |
|---|
| 4 |
|
|---|
| 5 |
SET client_encoding = 'SQL_ASCII'; |
|---|
| 6 |
SET standard_conforming_strings = off; |
|---|
| 7 |
SET check_function_bodies = false; |
|---|
| 8 |
SET client_min_messages = warning; |
|---|
| 9 |
SET escape_string_warning = off; |
|---|
| 10 |
|
|---|
| 11 |
SET search_path = public, pg_catalog; |
|---|
| 12 |
|
|---|
| 13 |
SET default_tablespace = ''; |
|---|
| 14 |
|
|---|
| 15 |
SET default_with_oids = false; |
|---|
| 16 |
|
|---|
| 17 |
-- |
|---|
| 18 |
-- Name: dabo_test; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
|---|
| 19 |
-- |
|---|
| 20 |
|
|---|
| 21 |
CREATE TABLE dabo_test ( |
|---|
| 22 |
p_item_no smallint DEFAULT nextval(('plant1_p_item_no_seq'::text)::regclass) NOT NULL, |
|---|
| 23 |
common character varying(40) NOT NULL, |
|---|
| 24 |
genus character varying(20), |
|---|
| 25 |
species character varying(30), |
|---|
| 26 |
variety character varying(40), |
|---|
| 27 |
plant_type character varying(6) DEFAULT 'flower'::character varying NOT NULL, |
|---|
| 28 |
series character varying(20), |
|---|
| 29 |
season character varying(9) DEFAULT 'annual'::character varying, |
|---|
| 30 |
ts_insert timestamp(0) without time zone DEFAULT now(), |
|---|
| 31 |
ts_update timestamp(0) without time zone, |
|---|
| 32 |
user_update character varying(20), |
|---|
| 33 |
user_insert character varying(20) DEFAULT "session_user"(), |
|---|
| 34 |
color character varying(30), |
|---|
| 35 |
category_type character varying(5) DEFAULT 'plant'::character varying NOT NULL, |
|---|
| 36 |
category_sub_type character varying(15) DEFAULT 'normal'::character varying NOT NULL |
|---|
| 37 |
); |
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
ALTER TABLE public.dabo_test OWNER TO postgres; |
|---|
| 41 |
|
|---|
| 42 |
-- |
|---|
| 43 |
-- Data for Name: dabo_test; Type: TABLE DATA; Schema: public; Owner: postgres |
|---|
| 44 |
-- |
|---|
| 45 |
|
|---|
| 46 |
COPY dabo_test (p_item_no, common, genus, species, variety, plant_type, series, season, ts_insert, ts_update, user_update, user_insert, color, category_type, category_sub_type) FROM stdin; |
|---|
| 47 |
795 campanula isabella blue campanula \N isabella blue flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 48 |
832 sunflower pacino helianthus \N pacino flower \N annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 49 |
836 sweet pea cuthbertson maroon lathyrus \N maroon flower cuthbertson annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 50 |
859 zinnia dreamland rose zinnia \N rose flower dreamland annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 51 |
894 euphorbia snow on the mountain euphorbia kilamanjaro snow on the mounain flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 52 |
933 pansy delta pink shades viola \N pink shades flower delta annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 53 |
936 pansy delta pure true blue viola \N pure true blue flower delta annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 54 |
939 pansy delta tapestry viola \N tapestry flower delta annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 55 |
976 snapdragon rocket bronze antirrhinum majus bronze flower rocket annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 56 |
977 snapdragon rocket gold antirrhinum majus gold flower rocket annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 57 |
1017 aster prince pink and white aster \N pink and white flower prince perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 58 |
1108 chrysanthemum canelli lavender chrysanthemum \N canelli flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 59 |
1125 cylamen laser assorted \N \N assorted flower laser annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 60 |
1132 primula danova cream yellow \N \N cream yellow flower danova perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 61 |
1140 primula danova red rose \N \N red rose flower danova perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 62 |
1144 primula danova white \N \N white flower danova perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 63 |
1169 dahlia bishop of llandaff dahlia \N bishop of llandaff flower \N annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 64 |
1229 geranium freestyle white pelargonium \N white flower freestyle annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 65 |
1237 geranium gugino's nell pelargonium \N gugino's nell flower \N annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 66 |
1256 geranium zonal americana coral pelargonium \N coral flower americana zonal annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 67 |
1334 tulip christmas dream \N \N christmas dream flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant fall_bulb |
|---|
| 68 |
1363 tulip purple star \N \N purple star flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant fall_bulb |
|---|
| 69 |
1377 tulip waterlily \N \N waterlily flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 70 |
1463 heuchera amethyst mist heuchera \N amethyst mist flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 71 |
1481 heuchera silver lode heuchera \N silver lode flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 72 |
1494 lavatera bredon springs lavatera \N bredon springs flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 73 |
1515 poppy alpine mix papaver bruseri alpine mix flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 74 |
1556 tiarella herronwood mist tiarella \N herronwood mist flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 75 |
1612 calibrachoa mini famous peach calibrachoa \N peach flower mini famous annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 76 |
1650 hyacinth l'innocence \N \N l'innocence flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant fall_bulb |
|---|
| 77 |
1683 chrysanthemum orange ozenda chrysanthemum \N orange ozenda flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 78 |
1693 perennial 4 (reg A) cascade cuts logo \N \N flower P4RegularA perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N tag price_group |
|---|
| 79 |
1718 tulip asst cascade cuts logo \N \N flower \N annual 2004-01-01 00:00:00 2006-06-19 13:54:40 mgarcia postgres \N tag regular |
|---|
| 80 |
1750 dahlia thais dahlia \N \N flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 81 |
1829 hedera helix anne marie hedera helix anne marie flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 82 |
1886 poppy oriental watermelon papaver \N watermelon flower oriental perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 83 |
1928 acorus gram variegatus acorus \N sweet flag-variegated flower \N annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 84 |
1943 papaver nudicale papaver nudicale \N flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 85 |
2004 dahlia bishop of auckland dahlia \N bishop of auckland flower \N annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 86 |
2051 amaryllis novelties amputo \N \N amputo flower novelties perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 87 |
2053 amaryllis alfresco hippeastrum \N alfresco flower \N perennial 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres double white plant fall_bulb |
|---|
| 88 |
2096 geranium caliente deep red pelargonium \N \N flower caliente annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 89 |
2192 scabiosa caucasia perfecta scabiosa caucasia perfecta flower \N perennial 2004-05-18 08:36:21 \N \N postgres \N plant normal |
|---|
| 90 |
2299 heuchera creme brulee heuchera \N creme brulee flower \N perennial 2004-09-30 14:28:32 \N \N postgres \N plant normal |
|---|
| 91 |
2309 heucherella stoplight heucherella \N stoplight flower \N perennial 2004-09-30 15:49:38 2004-09-30 15:55:37 postgres postgres \N plant normal |
|---|
| 92 |
2319 ranunculus concerto orange tangerine ranunculus \N orange tangerine flower \N annual 2004-09-30 16:25:56 \N \N postgres \N plant normal |
|---|
| 93 |
2333 zinnia magellan cherry zinnia \N magellan cherry flower \N annual 2004-10-06 13:31:27 2004-10-22 10:58:52 postgres postgres red plant normal |
|---|
| 94 |
2352 nemesia sunsatia coconut nemesia \N sunsatia coconut flower \N annual 2004-10-15 13:19:41 \N \N postgres \N plant normal |
|---|
| 95 |
2366 impatiens super elfin salmon impatiens \N salmon flower super elfin annual 2004-10-21 09:16:56 \N \N postgres salmon plant normal |
|---|
| 96 |
2369 stock prouesse mix mathiola incana \N flower \N annual 2004-11-01 10:34:47 \N \N postgres \N plant normal |
|---|
| 97 |
2371 peony victoire de la marne paeonia \N victoire de la marne flower \N perennial 2004-11-03 11:28:35 2004-11-03 13:10:02 postgres postgres \N plant normal |
|---|
| 98 |
2375 perennial 4 (prem F) cascade cuts logo \N \N flower P4PremiumF perennial 2004-11-04 14:23:35 2005-11-21 10:19:57 aklaver postgres \N tag price_group |
|---|
| 99 |
2386 perennial gallon (prem H) cascade cuts logo \N \N flower PGPremiumH perennial 2004-11-04 14:43:19 2005-11-21 10:22:43 aklaver postgres \N tag price_group |
|---|
| 100 |
2425 lachenalia rupert lachenalia \N rupert flower \N annual 2005-01-11 15:38:23 2005-04-06 12:59:15 postgres postgres blue plant normal |
|---|
| 101 |
2427 geranium zonal designer light pink pelargonium \N light pink flower zonal designer annual 2005-01-11 15:43:27 2005-01-24 11:54:23 postgres postgres light pink plant normal |
|---|
| 102 |
2454 zinnia benary's giant yellow zinnia elegans \N flower benary's giant annual 2005-02-08 13:06:06 \N \N postgres yellow plant normal |
|---|
| 103 |
2470 petunia supertun mini pink brigtht petunia supertun mini pink bright flower \N annual 2005-02-09 11:00:14 \N \N postgres \N plant normal |
|---|
| 104 |
2489 cyclamen sterling wine cyclamen \N wine flower sterling annual 2005-02-15 09:28:00 \N \N postgres \N plant normal |
|---|
| 105 |
2526 zygo cactus thor kiri schlumbergera \N thor kiri flower \N annual 2005-05-17 14:45:31 2005-06-22 11:52:03 postgres postgres light red plant normal |
|---|
| 106 |
2653 coleus pat martin solenostemon \N pat martin flower \N annual 2005-10-10 15:01:22 \N \N mgarcia \N plant normal |
|---|
| 107 |
2658 diascia wink garnet diascia \N wink garnet flower wink annual 2005-10-13 08:47:33 \N \N aklaver \N plant normal |
|---|
| 108 |
2661 diascia wink white diascia \N wink white flower wink annual 2005-10-13 08:52:15 \N \N aklaver white plant normal |
|---|
| 109 |
2683 impatiens celebrette hot rose improved impatiens hawkeri hot rose improved flower celebrette annual 2005-10-13 09:57:08 2006-02-14 10:44:13 mgarcia aklaver \N plant normal |
|---|
| 110 |
2775 tulip pak assorted tulip \N pak flower assorted perennial 2005-11-16 09:17:04 2005-11-18 14:17:14 aklaver mgarcia \N asst none |
|---|
| 111 |
46 angelica angelica archangelica herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 112 |
73 artemisia roman wormwood artemisia pontica roman wormwood herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 113 |
89 brugmansia pink flower brugmansia insignis pink flower moonflower herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 114 |
139 datura double yellow flowered datura meteloides double yellow flowered herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 115 |
151 dodecatheon rotlich dodecatheon tetrandum herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 116 |
199 russian licorice glycorrhiza echinata russian licorice herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 117 |
222 hops cascade humulus lupulus cascade hops herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 118 |
241 lavender bowles lavandula angustifolia bowles herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 119 |
251 lavender sarah lavandula angustifolia sarah herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 120 |
289 lavender richard gray lavandula angustifolia richard gray herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 121 |
333 mint lime mentha x piperita lime herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 122 |
381 basil sweet thai ocimum basilicum sweet thai herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 123 |
404 oregano wild greek origanum onites wild greek herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 124 |
423 geranium scented joy lucille mint pelargonium joy lucille mint herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 125 |
426 geranium scented paula's lemon rose pelargonium paula's lemon rose herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 126 |
444 geranium scented lemon balm pelargonium mellissium lemon balm herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 127 |
474 mexican bush oregano poliomenthe longifolia herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 128 |
484 daisy insecticidal pyrethrum cinerarifolium herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 129 |
520 salix melanostachys salix melanostachys herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 130 |
545 sage berggarten salvia officinalis berggarten herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 131 |
551 sage clary salvia sclarea clary herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 132 |
619 thyme white moss thymus praecox arcticus herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 133 |
712 zuta levana micromeria fruiticosa herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 134 |
738 chi-chi ruellia herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 135 |
742 lavender betty's blue lavandula angustifolia betty's blue herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 136 |
756 lavender nana lavandula angustifolia nana herb annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N plant normal |
|---|
| 137 |
1729 herb 3.5 (Reg. A) cascade cuts logo \N \N herb HR3RegA annual 2004-01-01 00:00:00 2005-11-21 10:45:30 aklaver postgres \N tag price_group |
|---|
| 138 |
2804 garlic assorted allium \N assorted herb assorted annual 2005-11-16 14:49:15 2005-11-18 14:17:14 aklaver mgarcia \N asst none |
|---|
| 139 |
\. |
|---|
| 140 |
|
|---|
| 141 |
|
|---|
| 142 |
-- |
|---|
| 143 |
-- Name: dabo_test_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
|---|
| 144 |
-- |
|---|
| 145 |
|
|---|
| 146 |
ALTER TABLE ONLY dabo_test |
|---|
| 147 |
ADD CONSTRAINT dabo_test_pkey PRIMARY KEY (p_item_no); |
|---|
| 148 |
|
|---|
| 149 |
|
|---|
| 150 |
-- |
|---|
| 151 |
-- PostgreSQL database dump complete |
|---|
| 152 |
-- |
|---|