blob: 194b69c959fadc2723f8c51083a24433055b9539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from peewee import TextField, IntegerField
from base import BaseModel
class Item(BaseModel):
name = TextField()
price = IntegerField()
text = TextField()
reward_rank = TextField(null=True)
|