Last active
February 11, 2017 06:45
-
-
Save 123Daoxyz/716b59957ce85b61ae64a0c0cfdcb75d to your computer and use it in GitHub Desktop.
create database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE mydatabase CHARACTER SET utf8 COLLATE utf8_general_ci; | |
### add new column | |
ALTER TABLE material ADD COLUMN is_synchronized tinyint default '1' NOT NULL COMMENT '0代表未同步到微信,1代表已同步到微信'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment