amal
b7aa1c6971
- Implement a complete cycle for buying a Matrix Chat Host - Refactor the Payement cycle and stripe related methods
19 lines
441 B
Python
19 lines
441 B
Python
# Generated by Django 3.2.4 on 2021-07-13 10:20
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('matrixhosting', '0008_remove_vminstance_ip'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='vminstance',
|
|
name='vm_id',
|
|
field=models.UUIDField(default=uuid.uuid4, editable=False, unique=True),
|
|
),
|
|
]
|