Skip to content

Commit

Permalink
Add date_published to EalgisMetadata and bump to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamoss committed May 6, 2018
1 parent face530 commit 02c1d33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ealgis_data_schema/schema_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def make_uuid():
Column('uuid', String(36), nullable=False, default=make_uuid),
Column('description', Text(), nullable=False),
Column('date_created', DateTime(timezone=True), default=datetime.datetime.utcnow, nullable=False),
Column('date_published', DateTime(timezone=True), nullable=False),
schema=schema_name))
tables.append(Table(
"dependencies", metadata,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
keywords="ealgis",
url="https://github.com/ealgis/ealgis-data-schema",
name="ealgis_data_schema",
version="1.1.0",
version="1.1.1",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=install_requires,
)

0 comments on commit 02c1d33

Please sign in to comment.