Skip to content

Commit

Permalink
ledger: forgot to add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
rayrayndwiga committed Nov 28, 2017
1 parent 167ad82 commit 218eedc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions ledger/payments/bpay/migrations/0013_bpayjobrecipient.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.8 on 2017-11-28 05:07
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('bpay', '0012_bpaytransaction_original_crn'),
]

operations = [
migrations.CreateModel(
name='BpayJobRecipient',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('email', models.EmailField(max_length=254, unique=True)),
],
options={
'db_table': 'payments_bpayjobrecipient',
},
),
]

0 comments on commit 218eedc

Please sign in to comment.