Added model and dao for Jobs.

This commit is contained in:
Adam Shimali
2016-01-15 11:12:05 +00:00
parent c6a0986f5f
commit b9f6db1856
6 changed files with 202 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ class UserSchema(ma.ModelSchema):
class ServiceSchema(ma.ModelSchema):
class Meta:
model = models.Service
exclude = ("updated_at", "created_at", "tokens", "templates")
exclude = ("updated_at", "created_at", "tokens", "templates", "jobs")
class TemplateSchema(ma.ModelSchema):