Skip to content

Instantly share code, notes, and snippets.

@ego008
Created January 14, 2013 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ego008/4529226 to your computer and use it in GitHub Desktop.
Save ego008/4529226 to your computer and use it in GitHub Desktop.
youBBS 1.03 to 1.04 sql
INSERT INTO yunbbs_settings VALUES('wb_key', '');
INSERT INTO yunbbs_settings VALUES('wb_secret', '');
CREATE TABLE yunbbs_weibo (
id mediumint(8) unsigned NOT NULL auto_increment,
uid mediumint(8) unsigned NOT NULL default '0',
name varchar(20) NOT NULL default '',
openid char(12) NOT NULL,
PRIMARY KEY (id),
KEY uid (uid),
KEY openid (openid)
) ENGINE=MyISAM ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment