12345678910111213141516171819202122232425262728293031323334 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2021-04-03 11:13
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- initial = True
- dependencies = [
- ]
- operations = [
- migrations.CreateModel(
- name='JsapiAccessToken',
- fields=[
- ('id', models.AutoField(primary_key=True, serialize=False)),
- ('application', models.CharField(max_length=64)),
- ('requestTime', models.DateTimeField(auto_now=True)),
- ('accessTokenKey', models.CharField(max_length=512)),
- ],
- ),
- migrations.CreateModel(
- name='WeChatAccessToken',
- fields=[
- ('id', models.AutoField(primary_key=True, serialize=False)),
- ('application', models.CharField(max_length=64)),
- ('requestTime', models.DateTimeField(auto_now=True)),
- ('accessTokenKey', models.CharField(max_length=512)),
- ],
- ),
- ]
|