small changes here and there. a debug function (SPOT), css, start of a navigation bar.
This commit is contained in:
parent
8f5568bcd0
commit
a901d5f237
35 changed files with 511 additions and 71 deletions
16
documentation/development/DATABASE
Normal file
16
documentation/development/DATABASE
Normal file
|
@ -0,0 +1,16 @@
|
|||
this file describes the database of the game.
|
||||
there are currently 2 types of tables in the game.
|
||||
|
||||
One is the user table. this table is unique.
|
||||
do the following to get the details:
|
||||
cd webgo
|
||||
python
|
||||
import psql
|
||||
print psql.create_user_table.__doc__
|
||||
|
||||
the other one is a goban table. for each game there exists one goban
|
||||
table. do the following to get the details:
|
||||
cd webgo
|
||||
python
|
||||
import psql
|
||||
print psql.create_goban_table.__doc__
|
Loading…
Add table
Add a link
Reference in a new issue