You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
467 B
Python
21 lines
467 B
Python
8 years ago
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.6 on 2017-04-01 18:50
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('lambdainst', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='vpnuser',
|
||
|
name='campaign',
|
||
|
field=models.CharField(blank=True, max_length=64, null=True),
|
||
|
),
|
||
|
]
|