12 lines
206 B
Python
12 lines
206 B
Python
|
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)
|