23 lines
287 B
Python
23 lines
287 B
Python
|
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()
|
||
|
|
||
|
|
||
|
|