10 lines
180 B
Python
10 lines
180 B
Python
from pony.orm import *
|
|
|
|
db = Database()
|
|
|
|
|
|
class Melee(db.Entity):
|
|
name = Required(str)
|
|
description = Optional(str)
|
|
mechanism = Optional(str)
|
|
icon = Required(bytes)
|