如果数据库不存在,我编写了一个小脚本来在 RethinkDB 中创建数据库和一些表。
我正在使用 Python shell 与 RethinkDB 进行通信
import rethinkdb as r
r.connect('localhost', 28015).repl()
r.db_list().contains('atlas').do(lambda databaseExists:
r.branch(
databaseExists,
{ 'dbs_created': 0 },
r.db_create('atlas'),
r.db('atlas').table_create('Carts'),
r.db('atlas').table_create('Checkouts'),
r.db('atlas').table_create('Collections'),
r.db('atlas').table_create('Contents'),
r.db('atlas').table_create('Orders'),
r.db('atlas').table_create('Products'),
r.db('atlas').table_create('Users'),
r.db('atlas').table('Users').filter({'email': '{admin@gmail.com}'}).update({'status': 'active', 'scope': ['admin']})
)
).run()
exit()
这很好用,如果不存在则创建数据库,但它只创建第一个表Carts
并跳过下一个请求。
我试着用这个代替
r.expr(['Carts', 'Checkouts', 'Collections', 'Contents', 'Orders', 'Products', 'Users']).do(lambda tables:
for table in tables:
r.db('atlas').table_create(table)
),
但我得到一个无效的语法错误
File "<stdin>", line 10
r.expr(['Carts', 'Checkouts', 'Collections', 'Contents', 'Orders', 'Products', 'Users']).do(for table in tables:
^
SyntaxError: invalid syntax
我怎样才能创建所有这些表一次而不是只创建第一个表?