Skip to content

Commit

Permalink
chore: recurring income expense category id made nullale in migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmaypurav committed Jan 11, 2025
1 parent 92bab05 commit 96fe200
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
$table->foreignId('user_id');
$table->foreignId('person_id')->nullable();
$table->foreignId('account_id');
$table->foreignId('category_id');
$table->foreignId('category_id')->nullable();
$table->string('description');
$table->decimal('amount', 65, 2);
$table->date('next_transaction_at');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
$table->foreignId('user_id');
$table->foreignId('person_id')->nullable();
$table->foreignId('account_id');
$table->foreignId('category_id');
$table->foreignId('category_id')->nullable();
$table->string('description');
$table->decimal('amount', 65, 2);
$table->date('next_transaction_at');
Expand Down

0 comments on commit 96fe200

Please sign in to comment.