Remove modules that will no longer be required. Move pending modules to pending-rewrite folders.
12 lines
198 B
Python
12 lines
198 B
Python
from data import RowTable, Table
|
|
|
|
|
|
rented = RowTable(
|
|
'rented',
|
|
('channelid', 'guildid', 'ownerid', 'expires_at', 'created_at'),
|
|
'channelid'
|
|
)
|
|
|
|
|
|
rented_members = Table('rented_members')
|