0003_tempchannelkey_created.py 500 B

1234567891011121314151617181920
  1. # Generated by Django 2.2.6 on 2019-11-15 06:51
  2. from django.db import migrations, models
  3. import django.utils.timezone
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('rotbot', '0002_auto_20191115_0606'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='tempchannelkey',
  11. name='created',
  12. field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
  13. preserve_default=False,
  14. ),
  15. ]