amal
b7aa1c6971
- Implement a complete cycle for buying a Matrix Chat Host - Refactor the Payement cycle and stripe related methods
29 lines
1.4 KiB
Python
29 lines
1.4 KiB
Python
# Generated by Django 3.2.4 on 2021-07-06 13:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_pay', '0015_auto_20210705_0849'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='PricingPlan',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=255, unique=True)),
|
|
('vat_inclusive', models.BooleanField(default=True)),
|
|
('vat_percentage', models.DecimalField(blank=True, decimal_places=5, default=0, max_digits=7)),
|
|
('set_up_fees', models.DecimalField(decimal_places=2, default=0, max_digits=7)),
|
|
('cores_unit_price', models.DecimalField(decimal_places=2, default=0, max_digits=7)),
|
|
('ram_unit_price', models.DecimalField(decimal_places=2, default=0, max_digits=7)),
|
|
('storage_unit_price', models.DecimalField(decimal_places=2, default=0, max_digits=7)),
|
|
('discount_name', models.CharField(blank=True, max_length=255, null=True)),
|
|
('discount_amount', models.DecimalField(decimal_places=2, default=0, max_digits=6)),
|
|
('stripe_coupon_id', models.CharField(blank=True, max_length=255, null=True)),
|
|
],
|
|
),
|
|
]
|