21 lines
479 B
Python
21 lines
479 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.4 on 2021-02-11 10:12
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('datacenterlight', '0031_vmpricing_stripe_coupon_id'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='contactus',
|
||
|
name='ip_address',
|
||
|
field=models.TextField(default='', null=True),
|
||
|
),
|
||
|
]
|