imaginaryfriend/src/entity/word.py

6 lines
104 B
Python
Raw Normal View History

2016-10-31 22:11:25 +01:00
from orator.orm import Model
class Word(Model):
2016-11-18 19:38:53 +01:00
__fillable__ = ['word']
2016-11-01 23:22:26 +01:00
__timestamps__ = False