diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-12 14:31:53 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-12 14:31:53 -0600 |
commit | 0ccf2f7b61ea9889b1c03e51dfc847ca16cd98e7 (patch) | |
tree | 3c379d541c5aa96870a54796718078668fc8263f /app/lttr/migrations/0004_auto_20190212_1529.py | |
parent | ee2803d2f85888ce42fd6371ef606f4a9c6fd88b (diff) |
finished up subscribe functions for lttr
Diffstat (limited to 'app/lttr/migrations/0004_auto_20190212_1529.py')
-rw-r--r-- | app/lttr/migrations/0004_auto_20190212_1529.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/lttr/migrations/0004_auto_20190212_1529.py b/app/lttr/migrations/0004_auto_20190212_1529.py new file mode 100644 index 0000000..4b810c9 --- /dev/null +++ b/app/lttr/migrations/0004_auto_20190212_1529.py @@ -0,0 +1,21 @@ +# Generated by Django 2.1.5 on 2019-02-12 15:29 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('lttr', '0003_newsletter_slug'), + ] + + operations = [ + migrations.RemoveField( + model_name='subscriber', + name='create_date', + ), + migrations.RemoveField( + model_name='subscriber', + name='ip', + ), + ] |