🎨 Maintain multi-version structure

This commit is contained in:
zhbaor 2022-09-30 20:53:40 +08:00
parent dd88509251
commit ca8e01a475
154 changed files with 17396 additions and 7 deletions

11
data/convert/31-2/db.py Normal file
View file

@ -0,0 +1,11 @@
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)