2
0
mirror of https://github.com/jfmcbrayer/brutaldon synced 2025-02-02 00:46:49 +01:00
Jason McBrayer 4de237a1b5 Store instance version in the client table
It is updated on new login, on entering the settings page, and on
timeline load. The last may be too often, but I thought the other
two were not often enough.
2019-04-29 14:41:11 -04:00

19 lines
401 B
Python

# Generated by Django 2.1.5 on 2019-04-29 18:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('brutaldon', '0020_auto_20190127_2159'),
]
operations = [
migrations.AddField(
model_name='client',
name='version',
field=models.CharField(default='1.0', max_length=8),
),
]