today i start a project and design my database,here's my design doc's content.
user
id int
name string
account
id int
gold int
silver int
accountdetails
id int
content *
role
id int
name string
sex char
portrait string
figure string
level int
exp int
speed int
actionpoint int
skillid int
roleskill
roleid int
id int
roleskillD
id int
effect string
name string
image string
level int
i use the laziest way to naming the fields and tables. i think it wouldn't cause me trouble.
i found i have no trouble to read name like these:
accountdetails
actionpoint
skillid
roleskill
etc.i don't like to use casing or _ in database.
give me your instruction if you feel things don't go right.