webgo/init_webgo.py

23 lines
287 B
Python
Raw Normal View History

2005-09-06 19:52:46 +02:00
import psql
def clear():
try:
psql.drop_table("test")
psql.drop_table("users")
except:
pass
def create():
psql.create_goban_table(9)
psql.create_user_table()
psql.add_webgo_user("gast","gast")
psql.add_webgo_user("gast2","gast2")
def main():
clear()
create()