Hi! Could we please enable some services and cookies to improve your experience and our website?
CREATE TABLE species (
species_id INTEGER PRIMARY KEY,
type_id INTEGER,
species_name VARCHAR(255) NOT NULL,
species_amount INTEGER,
date_start DATE,
species_status ENUM('active', 'absent', 'fairy') NOT NULL DEFAULT 'active'
);