Revision 11504
Added by Aaron Marcuse-Kubitza about 11 years ago
schemas/vegbien.my.sql | ||
---|---|---|
1580 | 1580 |
role varchar(255) DEFAULT 'unknown' NOT NULL, |
1581 | 1581 |
determinationtype varchar(255), |
1582 | 1582 |
reference_id int(11), |
1583 |
isoriginal int(1) DEFAULT false NOT NULL,
|
|
1583 |
isoriginal int(1), |
|
1584 | 1584 |
iscurrent__verbatim int(1), |
1585 | 1585 |
iscurrent int(1) DEFAULT false NOT NULL, |
1586 | 1586 |
taxonfit varchar(255), |
schemas/vegbien.sql | ||
---|---|---|
2586 | 2586 |
role role DEFAULT 'unknown'::role NOT NULL, |
2587 | 2587 |
determinationtype text, |
2588 | 2588 |
reference_id integer, |
2589 |
isoriginal boolean DEFAULT false NOT NULL,
|
|
2589 |
isoriginal boolean, |
|
2590 | 2590 |
iscurrent__verbatim boolean, |
2591 | 2591 |
iscurrent boolean DEFAULT false NOT NULL, |
2592 | 2592 |
taxonfit text, |
Also available in: Unified diff
schemas/vegbien.sql: taxondetermination.isoriginal: made it nullable like iscurrent__verbatim, because this is populated from the datasource. taxondetermination_set_iscurrent() now supports isoriginal=NULL, so this is not a problem.