rendered paste bodymysql> describe nuke_groups;
ERROR 1146 (42S02): Table 'nfackler.nuke_groups' doesn't exist
mysql> drop table if exists nuke_groups;
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> show warnings;
+-------+------+-----------------------------+
| Level | Code | Message |
+-------+------+-----------------------------+
| Note | 1051 | Unknown table 'nuke_groups' |
+-------+------+-----------------------------+
1 row in set (0.00 sec)
mysql> CREATE TABLE `nuke_groups` ( `id` int(10) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `description` text NOT NULL, `points` int(10) NOT NULL default '0', PRIMARY KEY `id` (`id`) ) DEFAULT CHARSET=latin1;
ERROR 1050 (42S01): Table 'nuke_groups' already exists