Skip to content

Commit

Permalink
fix: fix posted_at_null migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
anishfyle committed Nov 26, 2024
1 parent b7efd2a commit 2b96b32
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions apps/fyle/migrations/0005_expense_is_posted_at_null.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1.2 on 2024-11-26 06:36

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('fyle', '0004_remove_expense_settlement_id'),
]

operations = [
migrations.AddField(
model_name='expense',
name='is_posted_at_null',
field=models.BooleanField(default=False, help_text='Flag check if posted at is null or not'),
),
]

0 comments on commit 2b96b32

Please sign in to comment.