mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
704 B
26 lines
704 B
# -*- 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),
|
|
),
|
|
]
|
|
|