🗃️ Store melee data into SQLite
This commit is contained in:
parent
8b847e0f9c
commit
c0fc97a578
7 changed files with 73 additions and 23 deletions
10
data/convert/31-0/db.py
Normal file
10
data/convert/31-0/db.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from pony.orm import *
|
||||
|
||||
db = Database()
|
||||
|
||||
|
||||
class Melee(db.Entity):
|
||||
name = Required(str)
|
||||
description = Optional(str)
|
||||
mechanism = Optional(str)
|
||||
icon = Required(bytes)
|
Loading…
Add table
Add a link
Reference in a new issue