Skip to content

Commit

Permalink
Add default entries for data view creation/modification.
Browse files Browse the repository at this point in the history
  • Loading branch information
genedan committed Nov 14, 2022
1 parent 272857a commit 9749110
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions faslr/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,11 +313,13 @@ class ProjectViewTable(Base):
)

created = Column(
DateTime
DateTime,
default=datetime.now
)

modified = Column(
DateTime
DateTime,
default=datetime.now
)

origin = Column(
Expand Down

0 comments on commit 9749110

Please sign in to comment.