amal
b7aa1c6971
- Implement a complete cycle for buying a Matrix Chat Host - Refactor the Payement cycle and stripe related methods
33 lines
1 KiB
Python
33 lines
1 KiB
Python
# Generated by Django 3.2.4 on 2021-07-03 15:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('matrixhosting', '0002_rename_vmpricing_matrixvmpricing'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='matrixvmpricing',
|
|
name='cores_unit_price',
|
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='matrixvmpricing',
|
|
name='ram_unit_price',
|
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='matrixvmpricing',
|
|
name='set_up_fees',
|
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='matrixvmpricing',
|
|
name='storage_unit_price',
|
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7),
|
|
),
|
|
]
|