Werewolf ======== Rites ----- Id int not null auto-increment primary key Name text Level int not null Type text Tribe text Book text Details text mysql> describe rites; +---------+---------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +---------+---------+------+-----+---------+----------------+ | id | int(11) | | PRI | 0 | auto_increment | | name | text | YES | | NULL | | | level | int(11) | | | 0 | | | type | text | YES | | NULL | | | tribe | text | YES | | NULL | | | book | text | YES | | NULL | | | details | text | YES | | NULL | | +---------+---------+------+-----+---------+----------------+ 7 rows in set (0.01 sec)