mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2025-04-24 17:27:17 +00:00
18 lines
326 B
Python
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)''')
|
|
]
|