# Create general yeast_genome.polyA table DROP TABLE IF EXISTS yeast_genome.polyA; CREATE TABLE yeast_genome.polyA ( seq_numb INT UNSIGNED NOT NULL, chr INT UNSIGNED NOT NULL, strand ENUM('-','+') NOT NULL, ini INT UNSIGNED NOT NULL, end INT UNSIGNED NOT NULL, length INT UNSIGNED NOT NULL );