- database change.
alter table Users ADD wechat text DEFAULT NULL;
alter table Users ADD visited text DEFAULT NULL;
alter table Users ADD subscribe int(11) NOT NULL DEFAULT 0;
ALTER TABLE Users CHANGE
caps
caps
text DEFAULT NULL; ALTER TABLE Posts CHANGEdesc
desc
text DEFAULT NULL; ALTER TABLE Posts CHANGEimages
images
text DEFAULT NULL;
- database change. alter table Orders ADD serial int(11) NOT NULL DEFAULT 0; alter table Posts ADD paid int(11) NOT NULL DEFAULT 0; alter table Posts ADD publish datetime NOT NULL DEFAULT 0; update Users set caps='ROOT,POST_PUBLISH' where nicename='root'
- MyVoteOrders, MyLuckyOrders, See https://github.com/windsome/one for details and discussion.
- database change. alter table Posts ADD random1 int(11) NOT NULL DEFAULT 0, ADD random2 varchar(255) NOT NULL DEFAULT '', ADD accomplish datetime NOT NULL;
- Change database for calculate lucky number of post.
- Upgraded
eslint-plugin-react
to^5.0.0
- Upgraded
fs-extra
to^0.28.0
- Updated syntax used for
createStore
to matchredux@^3.1.0
- Cleaned up
connect
decorator inHomeView
- Cleaned up flow types in
HomeView