Skip to content
Snippets Groups Projects
Commit f0cd6486 authored by Nils G.'s avatar Nils G.
Browse files

Default for roles in Room is '{}'

parent 8fcd630a
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ db.define_table(
Field('creation', 'datetime', default=request.now, notnull=True),
Field('heartbeat', 'datetime', default=request.now, notnull=True),
Field('started', 'boolean', default=False),
Field('roles', 'string', default="", notnull=True),
Field('roles', 'string', default="{}", notnull=True),
Field('closed', 'boolean', default=False)
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment