Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0024_transaction_amount_default.py
| # Generated by Django 2.1.1 on 2018-09-28 12:38 | # Generated by Django 2.1.1 on 2018-09-28 12:38 | ||||
| from django.db import migrations, models | from django.db import migrations, models | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0023_transaction_amount_refunded_in_cents'), | ('looper', '0023_transaction_amount_refunded_in_cents'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='transaction', | model_name='transaction', name='amount_in_cents', field=models.IntegerField(default=0), | ||||
| name='amount_in_cents', | |||||
| field=models.IntegerField(default=0), | |||||
| ), | ), | ||||
| ] | ] | ||||