Guest User

Untitled

a guest
Oct 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. global $wpdb;
  2. $createSQL = "
  3. CREATE TABLE `". $wpdb->prefix ."_book_ratings` (
  4. `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  5. `book_id` bigint(20) UNSIGNED NOT NULL,
  6. `rating` float(3.1) UNSIGNED NOT NULL,
  7. `user_ip` varchar(32) NOT NULL
  8. ) ENGINE=InnoDB" . $wpdb->get_charset_collate() . " AUTO_INCREMENT=1;
  9. ";
  10.  
  11. require( ABSPATH . '/wp-admin/includes/upgrade.php' );
  12. dbDelta( $createSQL );
Add Comment
Please, Sign In to add comment