base of payment gateway

This commit is contained in:
Parsa Nazer
2025-03-13 22:26:17 +03:30
parent e76c0a663f
commit 6009c43345
7 changed files with 121 additions and 62 deletions
+24
View File
@@ -0,0 +1,24 @@
# Generated by Django 5.1.2 on 2025-03-13 16:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('order', '0014_alter_orderitemmodel_price'),
]
operations = [
migrations.CreateModel(
name='Payment',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('amount', models.PositiveIntegerField()),
('status', models.CharField(default='Pending', max_length=50)),
('tracking_code', models.CharField(blank=True, max_length=100)),
('bank_type', models.CharField(max_length=100)),
('created_at', models.DateTimeField(auto_now_add=True)),
],
),
]
@@ -0,0 +1,17 @@
# Generated by Django 5.1.2 on 2025-03-13 16:28
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('order', '0015_payment'),
]
operations = [
migrations.RenameModel(
old_name='Payment',
new_name='PaymentModel',
),
]