mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-10-31 23:22:49 +00:00
29 lines
782 B
Python
29 lines
782 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2018-01-29 16:45
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
try:
|
|
import preferences.aes_field as aes_field
|
|
except ImportError:
|
|
import re2o.aes_field as aes_field
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('preferences', '0039_auto_20180115_0003'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='assooption',
|
|
name='payment_pass',
|
|
field=aes_field.AESEncryptedField(blank=True, max_length=255, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='assooption',
|
|
name='payment_id',
|
|
field=models.CharField(default='', max_length=255),
|
|
),
|
|
]
|