ffxivbis/migrations/20190910_01_tgBmx-users-table.py
2019-09-11 02:51:55 +03:00

18 lines
326 B
Python

'''
users table
'''
from yoyo import step
__depends__ = {}
steps = [
step('''create table users (
user_id integer primary key,
username text not null,
password text not null,
permission text not null
)'''),
step('''create unique index users_username_idx on users(username)''')
]