Skip to content
Snippets Groups Projects
Commit e1a7ac04 authored by Brian Moe's avatar Brian Moe
Browse files

Added schema_version. Weak, but better than nothing.

parent 018cebea
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,8 @@ import pytz, time ...@@ -13,6 +13,8 @@ import pytz, time
SERVER_TZ = pytz.timezone(settings.TIME_ZONE) SERVER_TZ = pytz.timezone(settings.TIME_ZONE)
# Let's say we start here on schema versions
schema_version = "1.0"
class User(models.Model): class User(models.Model):
name = models.CharField(max_length=100) name = models.CharField(max_length=100)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment