Skip to content

Instantly share code, notes, and snippets.

@memorycraft
Created September 21, 2011 11:35
Show Gist options
  • Save memorycraft/1231845 to your computer and use it in GitHub Desktop.
Save memorycraft/1231845 to your computer and use it in GitHub Desktop.
データノードの設定
GRANT ALL PRIVILEGES ON *.* TO 'xxxxxxxxxxxxxx'@localhost IDENTIFIED BY 'xxxxxxxxxxxxxx';
GRANT ALL PRIVILEGES ON *.* TO 'xxxxxxxxxxxxxx'@'%' IDENTIFIED BY 'xxxxxxxxxxxxxx';
use cloudpack;
create table gift(
id int auto_increment,
name varchar(255),
description text,
created_at datetime not null,
primary key(id)
)engine=InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment