---------------------------------------------------------------- -- -- Table creation scripts for class organism -- ---------------------------------------------------------------- -- -- Schema -- ---------------------------------------------------------------- -- -- Main table - organism -- CREATE TABLE organism ( id VARCHAR(32) NOT NULL PRIMARY KEY, taxonomy VARCHAR(255), source VARCHAR(255) ) ;