0001_initial.py 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.5 on 2021-04-03 11:13
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. initial = True
  7. dependencies = [
  8. ]
  9. operations = [
  10. migrations.CreateModel(
  11. name='JsapiAccessToken',
  12. fields=[
  13. ('id', models.AutoField(primary_key=True, serialize=False)),
  14. ('application', models.CharField(max_length=64)),
  15. ('requestTime', models.DateTimeField(auto_now=True)),
  16. ('accessTokenKey', models.CharField(max_length=512)),
  17. ],
  18. ),
  19. migrations.CreateModel(
  20. name='WeChatAccessToken',
  21. fields=[
  22. ('id', models.AutoField(primary_key=True, serialize=False)),
  23. ('application', models.CharField(max_length=64)),
  24. ('requestTime', models.DateTimeField(auto_now=True)),
  25. ('accessTokenKey', models.CharField(max_length=512)),
  26. ],
  27. ),
  28. ]