mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
26 lines
704 B
Python
26 lines
704 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2018-01-14 23:10
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import preferences.aes_field
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('preferences', '0039_auto_20180115_0003'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='assooption',
|
|
name='payment_id',
|
|
field=models.CharField(default='', max_length=255),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='assooption',
|
|
name='payment_pass',
|
|
field=preferences.aes_field.AESEncryptedField(default='', max_length=255),
|
|
),
|
|
]
|