dead-cells-wiki/data/convert/31-2/db.py

12 lines
206 B
Python
Raw Normal View History

2022-09-30 20:53:40 +08:00
from pony.orm import *
db = Database()
class Melee(db.Entity):
name = Required(str)
description = Optional(str)
mechanism = Optional(str)
icon = Required(bytes)
stats = Required(int)