Skip to content

Commit

Permalink
Convert iNaturalist vernacular VARCHAR columns to TEXT (#4711)
Browse files Browse the repository at this point in the history
  • Loading branch information
AetherUnbound authored Aug 2, 2024
1 parent b74d8b0 commit da3a5a0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ COMMIT;
https://github.com/CatalogueOfLife/coldp/blob/master/README.md#vernacularname
*/
CREATE TABLE inaturalist.col_vernacular (
taxonID varchar(5),
taxonID text,
sourceID decimal,
taxon_name varchar(2000),
taxon_name text,
transliteration text,
name_language varchar(3),
preferred boolean,
country varchar(3),
area varchar(2000),
area text,
sex decimal,
referenceID decimal,
remarks text
Expand Down

0 comments on commit da3a5a0

Please sign in to comment.