Skip to content

Commit

Permalink
add migration files
Browse files Browse the repository at this point in the history
  • Loading branch information
abelayalew committed Oct 2, 2023
1 parent 9d8ab5c commit 6047310
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions django_chapa/migrations/0004_chapatransaction_payment_title.py
@@ -0,0 +1,18 @@
# Generated by Django 4.1 on 2023-10-02 11:36

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('django_chapa', '0003_remove_chapatransaction_event'),
]

operations = [
migrations.AddField(
model_name='chapatransaction',
name='payment_title',
field=models.CharField(default='Payment', max_length=255),
),
]
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name="django_chapa"
version = "1.3.0"
version = "1.4.0"
description = "Django Implementation For Chapa Payment Gateway"
authors = ["abelayalew <abelayalew81@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 6047310

Please sign in to comment.