Advertisement
Guest User

Untitled

a guest
Jun 7th, 2010
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. mysql> select * from wp_supporters;
  2. ERROR 1146 (42S02): Table 'wpmudb.wp_supporters' doesn't exist
  3. mysql> CREATE TABLE `wp_supporters` (
  4. -> `supporter_ID` bigint(20) unsigned NOT NULL auto_increment,
  5. -> `blog_ID` bigint(20) NOT NULL default '0',
  6. -> `expire` bigint(20) NOT NULL default '0',
  7. -> `note` TEXT,
  8. -> `gateway` VARCHAR( 20 ) NULL DEFAULT 'PayPal',
  9. -> `term` INT( 3 ) NULL DEFAULT NULL,
  10. -> PRIMARY KEY (`supporter_ID`)
  11. -> ) ENGINE=InnoDB;
  12. ERROR 1050 (42S01): Table 'wp_supporters' already exists
  13. mysql>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement