Skip to content
Snippets Groups Projects
Commit 05a50370 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

In the species table: Extend the db_name, web_name, and common_name from

64 to 255 characters.  Requested by Nick Langridge.
parent a1331a6a
No related branches found
No related tags found
No related merge requests found
-- Schema of tables not added by the bootstrap_master.pl script.
-- Schema of tables *not* added by the bootstrap_master.pl script.
-- NB: Additional tables are added by the web team to support storing
-- declarations of intentions etc. Those tables are not even mentioned
......@@ -8,10 +8,10 @@
-- Lists the species for which there is a Core database.
CREATE TABLE species (
species_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
db_name VARCHAR(64) NOT NULL, -- Name used in database names.
common_name VARCHAR(64) NOT NULL, -- What we often refer to it as.
web_name VARCHAR(64) NOT NULL, -- Name that the web site is using.
taxon VARCHAR(20),
db_name VARCHAR(255) NOT NULL, -- Name used in database names.
common_name VARCHAR(255) NOT NULL, -- What we often refer to it as.
web_name VARCHAR(255) NOT NULL, -- Name that the web site is using.
taxon VARCHAR(20),
species_prefix VARCHAR(20),
is_current BOOLEAN NOT NULL DEFAULT true,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment