I was getting a mysql_query error on line 16, Where I could not activate my plugin. I had to change the lines below.
//if( !$wpdb->get_var( "SHOW TABLES LIKE '$table_name'" ) ) {
to
if( !$wpdb->get_var( "CREATE TABLE IF NOT EXISTS '$table_name'" ) ) {
Jason