1 2 3 4 5 6 7 8
from orator import Model class Folder(Model): __timestamps__ = False __fillable__ = ['name'] __primary_key__ = 'name'