Cast fields to string and drop unused table.

This commit is contained in:
James Cole
2024-11-15 19:13:37 +01:00
parent ec89a2f956
commit 60f6a91fe4
12 changed files with 17 additions and 19 deletions

View File

@@ -49,6 +49,7 @@ class AvailableBudget extends Model
'start_date' => 'date',
'end_date' => 'date',
'transaction_currency_id' => 'int',
'amount' => 'string',
];
protected $fillable = ['user_id', 'user_group_id', 'transaction_currency_id', 'amount', 'start_date', 'end_date', 'start_date_tz', 'end_date_tz'];