Project

General

Profile

1 537 aaronmk
-- Existing tables
2
3 596 aaronmk
CREATE TABLE role
4 537 aaronmk
(
5
  role_id int(11) NOT NULL AUTO_INCREMENT,
6
  rolecode character varying(30) NOT NULL,
7
  roledescription character varying(200),
8 596 aaronmk
  CONSTRAINT role_pkey PRIMARY KEY (role_id )
9 537 aaronmk
);
10
11
CREATE TABLE reference
12
(
13
  reference_id int(11) NOT NULL AUTO_INCREMENT,
14
  shortname character varying(250),
15
  fulltext__ text,
16
  referencetype character varying(250)
17
);
18
19
CREATE TABLE party
20
(
21
  party_id int(11) NOT NULL AUTO_INCREMENT,
22
  salutation character varying(20),
23
  givenname character varying(50),
24
  middlename character varying(50),
25
  surname character varying(50),
26
  organizationname character varying(100)
27
);
28
29
CREATE TABLE plantname
30
(
31
  plantname_id int(11) NOT NULL AUTO_INCREMENT,
32
  plantname character varying(255) NOT NULL,
33
  reference_id int(11),
34 599 aaronmk
  dateentered timestamp NULL DEFAULT now(),
35 537 aaronmk
  CONSTRAINT plantname_pkey PRIMARY KEY (plantname_id ),
36
  CONSTRAINT plantname_reference_id FOREIGN KEY (reference_id)
37
      REFERENCES reference (reference_id) MATCH SIMPLE
38
      ON UPDATE CASCADE ON DELETE CASCADE
39
);
40
41
CREATE TABLE plantconcept
42
(
43
  plantconcept_id int(11) NOT NULL AUTO_INCREMENT,
44
  plantname_id int(11) NOT NULL,
45 599 aaronmk
  reference_id int(11),
46 537 aaronmk
  plantcode character varying(23),
47
  plantdescription text,
48
  d_obscount int(11),
49
  d_currentaccepted int(1),
50
  accessioncode character varying(255),
51
  CONSTRAINT plantconcept_pkey PRIMARY KEY (plantconcept_id ),
52
  CONSTRAINT plantconcept_plantname_id FOREIGN KEY (plantname_id)
53
      REFERENCES plantname (plantname_id) MATCH SIMPLE
54
      ON UPDATE CASCADE ON DELETE CASCADE,
55
  CONSTRAINT plantconcept_reference_id FOREIGN KEY (reference_id)
56
      REFERENCES reference (reference_id) MATCH SIMPLE
57
      ON UPDATE CASCADE ON DELETE CASCADE
58
);
59
60 592 aaronmk
CREATE TABLE stratummethod
61
(
62
  stratummethod_id int(11) NOT NULL AUTO_INCREMENT,
63
  reference_id int(11),
64
  stratummethodname character varying(30) NOT NULL,
65
  stratummethoddescription text,
66
  stratumassignment character varying(50),
67
  accessioncode character varying(255),
68
  CONSTRAINT stratummethod_pkey PRIMARY KEY (stratummethod_id ),
69
  CONSTRAINT stratummethod_reference_id FOREIGN KEY (reference_id)
70
      REFERENCES reference (reference_id) MATCH SIMPLE
71
      ON UPDATE CASCADE ON DELETE CASCADE
72
);
73
74
CREATE TABLE stratumtype
75
(
76
  stratumtype_id int(11) NOT NULL AUTO_INCREMENT,
77
  stratummethod_id int(11) NOT NULL,
78
  stratumindex character varying(10),
79
  stratumname character varying(30),
80
  stratumdescription text,
81
  CONSTRAINT stratumtype_pkey PRIMARY KEY (stratumtype_id ),
82
  CONSTRAINT stratumtype_stratummethod_id FOREIGN KEY (stratummethod_id)
83
      REFERENCES stratummethod (stratummethod_id) MATCH SIMPLE
84
      ON UPDATE CASCADE ON DELETE CASCADE
85
);
86
87 537 aaronmk
CREATE TABLE namedplace
88
(
89
  namedplace_id int(11) NOT NULL AUTO_INCREMENT,
90
  placesystem character varying(50),
91
  placename character varying(100) NOT NULL,
92
  placedescription text,
93
  placecode character varying(15),
94
  owner character varying(100),
95
  reference_id int(11),
96
  d_obscount int(11),
97
  accessioncode character varying(255),
98
  CONSTRAINT namedplace_pkey PRIMARY KEY (namedplace_id ),
99
  CONSTRAINT namedplace_reference_id FOREIGN KEY (reference_id)
100
      REFERENCES reference (reference_id) MATCH SIMPLE
101
      ON UPDATE CASCADE ON DELETE CASCADE,
102
  CONSTRAINT namedplace_keys UNIQUE (placesystem , placename )
103
);
104
105 566 aaronmk
CREATE TABLE locationplace
106 552 aaronmk
(
107
  locationplace_id int(11) NOT NULL AUTO_INCREMENT,
108
  location_id int(11) NOT NULL,
109
  calculated int(1),
110
  namedplace_id int(11) NOT NULL,
111 566 aaronmk
  CONSTRAINT locationplace_pkey PRIMARY KEY (locationplace_id ),
112
  CONSTRAINT locationplace_location_id FOREIGN KEY (location_id)
113 552 aaronmk
      REFERENCES location (location_id) MATCH SIMPLE
114
      ON UPDATE CASCADE ON DELETE CASCADE,
115 566 aaronmk
  CONSTRAINT locationplace_namedplace_id FOREIGN KEY (namedplace_id)
116 552 aaronmk
      REFERENCES namedplace (namedplace_id) MATCH SIMPLE
117
      ON UPDATE CASCADE ON DELETE CASCADE,
118 566 aaronmk
  CONSTRAINT locationplace_keys UNIQUE (location_id , namedplace_id )
119 552 aaronmk
);
120
121 537 aaronmk
CREATE TABLE project
122
(
123
  project_id int(11) NOT NULL AUTO_INCREMENT,
124
  projectname character varying(150) NOT NULL,
125
  projectdescription text,
126 578 aaronmk
  startdate timestamp NULL,
127
  stopdate timestamp NULL,
128 537 aaronmk
  d_obscount int(11),
129 578 aaronmk
  d_lastlocationaddeddate timestamp NULL,
130 537 aaronmk
  accessioncode character varying(255),
131
  CONSTRAINT project_pkey PRIMARY KEY (project_id ),
132
  CONSTRAINT project_keys UNIQUE (projectname , startdate , stopdate )
133
);
134
135
-- New tables
136
137 536 aaronmk
CREATE TABLE location
138
(
139
  location_id int(11) NOT NULL AUTO_INCREMENT,
140 582 aaronmk
  authorlocationcode character varying(30),
141 536 aaronmk
  reference_id int(11),
142
  parent_id int(11),
143 582 aaronmk
  reallatitude double precision,
144
  reallongitude double precision,
145 536 aaronmk
  locationaccuracy double precision,
146 575 aaronmk
  confidentialitystatus int(11) NOT NULL DEFAULT 0,
147 536 aaronmk
  confidentialityreason character varying(200),
148 580 aaronmk
  publiclatitude double precision,
149
  publiclongitude double precision,
150 561 aaronmk
  `... (truncated) ...` int(11),
151 536 aaronmk
  accessioncode character varying(255),
152
  sublocationxposition double precision,
153
  sublocationyposition double precision,
154
  namedplace_id int(11),
155
  CONSTRAINT location_pkey PRIMARY KEY (location_id ),
156
  CONSTRAINT location_namedplace_id FOREIGN KEY (namedplace_id)
157
      REFERENCES namedplace (namedplace_id) MATCH SIMPLE
158
      ON UPDATE CASCADE ON DELETE CASCADE,
159
  CONSTRAINT location_parent_id FOREIGN KEY (parent_id)
160
      REFERENCES location (location_id) MATCH SIMPLE
161
      ON UPDATE CASCADE ON DELETE CASCADE,
162
  CONSTRAINT location_reference_id FOREIGN KEY (reference_id)
163
      REFERENCES reference (reference_id) MATCH SIMPLE
164
      ON UPDATE CASCADE ON DELETE CASCADE,
165 582 aaronmk
  CONSTRAINT location_keys_code UNIQUE (reference_id , authorlocationcode ),
166
  CONSTRAINT location_keys_coords UNIQUE (reference_id , reallatitude , reallongitude ),
167
  CONSTRAINT location_keys_subplot_code UNIQUE (parent_id , authorlocationcode ),
168
  CONSTRAINT location_keys_subplot_coords UNIQUE (parent_id , sublocationxposition , sublocationyposition )
169 536 aaronmk
);
170
171
CREATE TABLE locationevent -- VegBank's observation table.
172
(
173
  locationevent_id int(11) NOT NULL AUTO_INCREMENT,
174
  previous_id int(11),
175 605 aaronmk
  location_id int(11),
176 536 aaronmk
  project_id int(11),
177 570 aaronmk
  authoreventcode character varying(30),
178 561 aaronmk
  `... (truncated) ...` int(11),
179 536 aaronmk
  accessioncode character varying(255),
180 586 aaronmk
  sourceaccessioncode character varying(100),
181 536 aaronmk
  CONSTRAINT locationevent_pkey PRIMARY KEY (locationevent_id ),
182
  CONSTRAINT locationevent_location_id FOREIGN KEY (location_id)
183
      REFERENCES location (location_id) MATCH SIMPLE
184
      ON UPDATE CASCADE ON DELETE CASCADE,
185
  CONSTRAINT locationevent_project_id FOREIGN KEY (project_id)
186
      REFERENCES project (project_id) MATCH SIMPLE
187
      ON UPDATE CASCADE ON DELETE CASCADE,
188 586 aaronmk
  CONSTRAINT locationevent_keys_accessioncode UNIQUE (location_id , project_id , sourceaccessioncode ),
189
  CONSTRAINT locationevent_keys_code UNIQUE (location_id , project_id , authoreventcode )
190 536 aaronmk
);
191
192
CREATE TABLE taxonoccurrence -- VegBank's taxonobservation table.
193
(
194
  taxonoccurrence_id int(11) NOT NULL AUTO_INCREMENT,
195 605 aaronmk
  locationevent_id int(11),
196 536 aaronmk
  authorplantname character varying(255),
197
  reference_id int(11),
198
  taxoninferencearea double precision,
199
  emb_taxonoccurrence int(11),
200 561 aaronmk
  `... (truncated) ...` int(11),
201 536 aaronmk
  accessioncode character varying(255),
202
  CONSTRAINT taxonoccurrence_pkey PRIMARY KEY (taxonoccurrence_id ),
203
  CONSTRAINT taxonoccurrence_locationevent_id FOREIGN KEY (locationevent_id)
204
      REFERENCES locationevent (locationevent_id) MATCH SIMPLE
205
      ON UPDATE CASCADE ON DELETE CASCADE,
206
  CONSTRAINT taxonoccurrence_reference_id FOREIGN KEY (reference_id)
207
      REFERENCES reference (reference_id) MATCH SIMPLE
208
      ON UPDATE CASCADE ON DELETE CASCADE
209
);
210
211
CREATE TABLE aggregateoccurrence -- VegBank's taxonimportance table.
212
(
213
  aggregateoccurrence_id int(11) NOT NULL AUTO_INCREMENT,
214
  taxonoccurrence_id int(11) NOT NULL,
215 584 aaronmk
  taxonbinmethod_id int(11),
216 536 aaronmk
  cover double precision,
217
  basalarea double precision,
218
  biomass double precision,
219
  inferencearea double precision,
220
  stratumbase double precision,
221
  stratumheight double precision,
222
  emb_aggregateoccurrence int(11),
223
  covercode character varying(10),
224 607 aaronmk
  count int(11),
225 536 aaronmk
  accessioncode character varying(255),
226 586 aaronmk
  sourceaccessioncode character varying(100),
227 671 aaronmk
  plantobservation_id int(11),
228 536 aaronmk
  CONSTRAINT aggregateoccurrence_pkey PRIMARY KEY (aggregateoccurrence_id ),
229 671 aaronmk
  CONSTRAINT aggregateoccurrence_plantobservation_id FOREIGN KEY (plantobservation_id)
230
      REFERENCES plantobservation (plantobservation_id) MATCH SIMPLE
231 666 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE,
232 584 aaronmk
  CONSTRAINT aggregateoccurrence_taxonbinmethod_id FOREIGN KEY (taxonbinmethod_id)
233
      REFERENCES taxonbinmethod (taxonbinmethod_id) MATCH SIMPLE
234 536 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE,
235
  CONSTRAINT aggregateoccurrence_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id)
236
      REFERENCES taxonoccurrence (taxonoccurrence_id) MATCH SIMPLE
237
      ON UPDATE CASCADE ON DELETE CASCADE,
238 586 aaronmk
  CONSTRAINT aggregateoccurrence_keys_accessioncode UNIQUE (taxonoccurrence_id , sourceaccessioncode ),
239
  CONSTRAINT aggregateoccurrence_keys_method UNIQUE (taxonoccurrence_id , taxonbinmethod_id )
240 536 aaronmk
);
241
242 671 aaronmk
CREATE TABLE plantobservation -- VegBank's stemcount table.
243 536 aaronmk
(
244 671 aaronmk
  plantobservation_id int(11) NOT NULL AUTO_INCREMENT,
245 536 aaronmk
  aggregateoccurrence_id int(11) NOT NULL,
246 563 aaronmk
  overallheight double precision,
247
  overallheightaccuracy double precision,
248 671 aaronmk
  emb_plantobservation int(11),
249 570 aaronmk
  authorplantcode character varying(20),
250 536 aaronmk
  accessioncode character varying(255),
251
  stemcount int(11),
252 586 aaronmk
  sourceaccessioncode character varying(100),
253 671 aaronmk
  CONSTRAINT plantobservation_pkey PRIMARY KEY (plantobservation_id ),
254
  CONSTRAINT plantobservation_aggregateoccurrence_id FOREIGN KEY (aggregateoccurrence_id)
255 536 aaronmk
      REFERENCES aggregateoccurrence (aggregateoccurrence_id) MATCH SIMPLE
256
      ON UPDATE CASCADE ON DELETE CASCADE,
257 671 aaronmk
  CONSTRAINT plantobservation_aggregateoccurrence_id_1_to_1 UNIQUE (aggregateoccurrence_id )
258 536 aaronmk
);
259
260 673 aaronmk
CREATE TABLE stemobservation -- VegBank's stemlocation table.
261 536 aaronmk
(
262 673 aaronmk
  stemobservation_id int(11) NOT NULL AUTO_INCREMENT,
263 671 aaronmk
  plantobservation_id int(11) NOT NULL,
264 570 aaronmk
  authorstemcode character varying(20),
265 536 aaronmk
  xposition double precision,
266
  yposition double precision,
267
  health character varying(50),
268 673 aaronmk
  emb_stemobservation int(11),
269 536 aaronmk
  diameter double precision,
270
  height double precision,
271
  heightaccuracy double precision,
272
  age double precision,
273
  accessioncode character varying(255),
274 556 aaronmk
  diameteraccuracy double precision,
275 586 aaronmk
  sourceaccessioncode character varying(100),
276 673 aaronmk
  CONSTRAINT stemobservation_pkey PRIMARY KEY (stemobservation_id ),
277
  CONSTRAINT stemobservation_plantobservation_id FOREIGN KEY (plantobservation_id)
278 671 aaronmk
      REFERENCES plantobservation (plantobservation_id) MATCH SIMPLE
279 536 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE,
280 673 aaronmk
  CONSTRAINT stemobservation_keys_accessioncode UNIQUE (plantobservation_id , sourceaccessioncode ),
281
  CONSTRAINT stemobservation_keys_code UNIQUE (plantobservation_id , authorstemcode )
282 536 aaronmk
);
283
284 670 aaronmk
CREATE TABLE specimen -- A physical specimen collected from a plant. Used to link replicates of the same specimen together.
285 669 aaronmk
(
286
  specimen_id int(11) NOT NULL AUTO_INCREMENT,
287
  CONSTRAINT specimen_pkey PRIMARY KEY (specimen_id )
288
);
289
290 670 aaronmk
CREATE TABLE specimenreplicate -- A herbarium's replicate of a specimen. Contains Darwin Core specimen data.
291 537 aaronmk
(
292 668 aaronmk
  specimenreplicate_id int(11) NOT NULL AUTO_INCREMENT,
293 537 aaronmk
  reference_id int(11) NOT NULL,
294 668 aaronmk
  collectioncode_dwc character varying(255), -- The code for the collection that the specimenreplicate is from.
295 537 aaronmk
  catalognumber_dwc character varying(255),
296 578 aaronmk
  collectiondate timestamp NULL,
297 537 aaronmk
  museum_id int(11),
298 586 aaronmk
  sourceaccessioncode character varying(100),
299 537 aaronmk
  accessioncode character varying(255),
300 576 aaronmk
  taxonoccurrence_id int(11) NOT NULL,
301 613 aaronmk
  verbatimcollectorname character varying(255),
302 668 aaronmk
  collectionnumber character varying(255), -- The number of the specimenreplicate within the collection.
303 669 aaronmk
  specimen_id int(11),
304 668 aaronmk
  CONSTRAINT specimenreplicate_pkey PRIMARY KEY (specimenreplicate_id ),
305
  CONSTRAINT specimenreplicate_museum_id FOREIGN KEY (museum_id)
306 537 aaronmk
      REFERENCES party (party_id) MATCH SIMPLE
307
      ON UPDATE CASCADE ON DELETE CASCADE,
308 668 aaronmk
  CONSTRAINT specimenreplicate_reference_id_fkey FOREIGN KEY (reference_id)
309 537 aaronmk
      REFERENCES reference (reference_id) MATCH SIMPLE
310
      ON UPDATE CASCADE ON DELETE CASCADE,
311 669 aaronmk
  CONSTRAINT specimenreplicate_specimen_id FOREIGN KEY (specimen_id)
312
      REFERENCES specimen (specimen_id) MATCH SIMPLE
313
      ON UPDATE CASCADE ON DELETE CASCADE,
314 668 aaronmk
  CONSTRAINT specimenreplicate_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id)
315 537 aaronmk
      REFERENCES taxonoccurrence (taxonoccurrence_id) MATCH SIMPLE
316
      ON UPDATE CASCADE ON DELETE CASCADE,
317 668 aaronmk
  CONSTRAINT specimenreplicate_keys_accessioncode UNIQUE (reference_id , collectioncode_dwc , sourceaccessioncode ),
318
  CONSTRAINT specimenreplicate_keys_catalognumber UNIQUE (reference_id , collectioncode_dwc , catalognumber_dwc ),
319 672 aaronmk
  CONSTRAINT specimenreplicate_keys_collectionnumber UNIQUE (reference_id , collectioncode_dwc , collectionnumber )
320 537 aaronmk
);
321
322 544 aaronmk
CREATE TABLE voucher
323
(
324
  voucher_id int(11) NOT NULL AUTO_INCREMENT,
325 545 aaronmk
  taxonoccurrence_id int(11) NOT NULL,
326 668 aaronmk
  specimenreplicate_id int(11) NOT NULL,
327 544 aaronmk
  accessioncode character varying(255),
328
  CONSTRAINT voucher_pkey PRIMARY KEY (voucher_id ),
329 668 aaronmk
  CONSTRAINT voucher_specimenreplicate_id FOREIGN KEY (specimenreplicate_id)
330
      REFERENCES specimenreplicate (specimenreplicate_id) MATCH SIMPLE
331 544 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE,
332
  CONSTRAINT voucher_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id)
333
      REFERENCES taxonoccurrence (taxonoccurrence_id) MATCH SIMPLE
334
      ON UPDATE CASCADE ON DELETE CASCADE,
335 668 aaronmk
  CONSTRAINT voucher_keys UNIQUE (taxonoccurrence_id , specimenreplicate_id )
336 544 aaronmk
);
337
338 536 aaronmk
CREATE TABLE taxondetermination -- VegBank's taxoninterpretation table.
339
(
340
  taxondetermination_id int(11) NOT NULL AUTO_INCREMENT,
341
  taxonoccurrence_id int(11) NOT NULL,
342
  plantconcept_id int(11) NOT NULL,
343 575 aaronmk
  party_id int(11),
344 536 aaronmk
  role_id int(11) NOT NULL,
345
  determinationtype character varying(30),
346
  reference_id int(11),
347 632 aaronmk
  isoriginal int(1) NOT NULL DEFAULT false,
348
  iscurrent int(1) NOT NULL DEFAULT false,
349 536 aaronmk
  taxonfit character varying(50),
350
  taxonconfidence character varying(50),
351
  grouptype character varying(20),
352
  notes text,
353
  notespublic int(1),
354
  notesmgt int(1),
355
  revisions int(1),
356 591 aaronmk
  determinationdate timestamp NULL,
357 536 aaronmk
  emb_taxondetermination int(11),
358
  accessioncode character varying(255),
359
  CONSTRAINT taxondetermination_pkey PRIMARY KEY (taxondetermination_id ),
360
  CONSTRAINT taxondetermination_party_id FOREIGN KEY (party_id)
361
      REFERENCES party (party_id) MATCH SIMPLE
362
      ON UPDATE CASCADE ON DELETE CASCADE,
363
  CONSTRAINT taxondetermination_plantconcept_id FOREIGN KEY (plantconcept_id)
364
      REFERENCES plantconcept (plantconcept_id) MATCH SIMPLE
365
      ON UPDATE CASCADE ON DELETE CASCADE,
366
  CONSTRAINT taxondetermination_reference_id FOREIGN KEY (reference_id)
367
      REFERENCES reference (reference_id) MATCH SIMPLE
368
      ON UPDATE CASCADE ON DELETE CASCADE,
369
  CONSTRAINT taxondetermination_role_id FOREIGN KEY (role_id)
370 596 aaronmk
      REFERENCES role (role_id) MATCH SIMPLE
371 536 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE,
372
  CONSTRAINT taxondetermination_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id)
373
      REFERENCES taxonoccurrence (taxonoccurrence_id) MATCH SIMPLE
374
      ON UPDATE CASCADE ON DELETE CASCADE
375
);
376
377 552 aaronmk
CREATE TABLE stratum
378
(
379
  stratum_id int(11) NOT NULL AUTO_INCREMENT,
380
  locationevent_id int(11) NOT NULL,
381
  stratumtype_id int(11) NOT NULL,
382
  stratummethod_id int(11),
383
  stratumname character varying(30),
384
  stratumheight double precision,
385
  stratumbase double precision,
386
  stratumcover double precision,
387
  stratumdescription character varying(200),
388
  CONSTRAINT stratum_pkey PRIMARY KEY (stratum_id ),
389
  CONSTRAINT stratum_locationevent_id FOREIGN KEY (locationevent_id)
390
      REFERENCES locationevent (locationevent_id) MATCH SIMPLE
391 592 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE,
392
  CONSTRAINT stratum_stratumtype_id FOREIGN KEY (stratumtype_id)
393
      REFERENCES stratumtype (stratumtype_id) MATCH SIMPLE
394 559 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE
395 552 aaronmk
);
396
397 537 aaronmk
CREATE TABLE sizeclass -- A range of size measurements used to aggregate organisms.
398 536 aaronmk
(
399 537 aaronmk
  sizeclass_id int(11) NOT NULL AUTO_INCREMENT,
400
  mindiameter double precision,
401
  minheight double precision,
402
  maxdiameter double precision,
403
  maxheight double precision,
404 536 aaronmk
  accessioncode character varying(255),
405 537 aaronmk
  CONSTRAINT sizeclass_pkey PRIMARY KEY (sizeclass_id )
406 536 aaronmk
);
407
408 592 aaronmk
CREATE TABLE taxonbinmethod
409 536 aaronmk
(
410 584 aaronmk
  taxonbinmethod_id int(11) NOT NULL,
411 592 aaronmk
  label character varying(255),
412
  stratumtype_id int(11),
413 536 aaronmk
  sizeclass_id int(11),
414
  coverindex_id int(11),
415
  accessioncode character varying(255),
416 584 aaronmk
  CONSTRAINT taxonbinmethod_pkey PRIMARY KEY (taxonbinmethod_id ),
417
  CONSTRAINT taxonbinmethod_sizeclass_id FOREIGN KEY (sizeclass_id)
418 536 aaronmk
      REFERENCES sizeclass (sizeclass_id) MATCH SIMPLE
419 583 aaronmk
      ON UPDATE CASCADE ON DELETE CASCADE,
420 592 aaronmk
  CONSTRAINT taxonbinmethod_stratumtype_id FOREIGN KEY (stratumtype_id)
421
      REFERENCES stratumtype (stratumtype_id) MATCH SIMPLE
422
      ON UPDATE CASCADE ON DELETE CASCADE
423 536 aaronmk
);