티스토리 뷰
db 생성함.
use RS_Act;
drop table IF EXISTS user_info;
drop table IF EXISTS friends_list;
drop table IF EXISTS inventory;
drop table IF EXISTS item_list;
drop table IF EXISTS ui_log;
create table user_info (
user_id int unsigned not null auto_increment primary key,
nick_name char(30) not null,
password char(30) not null,
gold int unsigned,
potion int unsigned,
note int unsigned,
high_score int unsigned,
weekly_high_score int unsigned
);
create table friends_list (
owner_id int unsigned not null primary key,
friend_id int unsigned
);
create table inventory (
owner int unsigned not null primary key,
item_id int unsigned,
count int unsigned,
get_date timestamp,
start_date datetime default '0000-00-00 00:00:00',
valid_date datetime default '0000-00-00 00:00:00'
);
create table item_list (
item_id int unsigned not null primary key,
item_name char(30) not null,
item_type int unsigned,
valid_date datetime default '0000-00-00 00:00:00',
item_desc text not null
);
create table ui_log (
owner_id int unsigned not null primary key,
log_time timestamp not null,
log_type int unsigned,
log_text text
);
'Programming > Web Game Server 제작' 카테고리의 다른 글
Web Game 서버 제작 9일차( Mac 환경 설정 최종 ) (2) | 2013.03.20 |
---|---|
Web Game 서버 제작 8일차 (9) | 2013.03.19 |
Web Game 서버 제작 6일차 (1) | 2013.03.16 |
Web Game 서버 제작 5일차 (4) | 2013.03.15 |
Web Game 서버 제작 4일차 (6) | 2013.03.14 |
- Total
- Today
- Yesterday
- 수신기
- KT88
- gaui
- 앰프
- 타석스크린
- rx-2404
- 스윙팡
- 시뮬전용
- 웰케라
- hybrid
- Unity3D
- 유니티
- 250
- 송신기
- 유니티3D
- ep-200
- transistor
- EP200
- 하니비
- 2a3
- 하이브리드
- TRex
- 프리앰프
- bias
- 타격연습기
- KT-88
- 진공관
- iPhone
- 실바웰드
- 6bq5
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |