Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadranjbarz committed Feb 7, 2024
2 parents 8fbb1a9 + 6865e41 commit 83c2312
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions migration/1707045732631-modify_recurring_donation_table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export class ModifyRecurringDonationTable1707045732631
ALTER TABLE recurring_donation
ADD COLUMN IF NOT EXISTS amount INT NOT NULL DEFAULT 0,
ADD COLUMN IF NOT EXISTS interval text NOT NULL DEFAULT 'monthly',
ADD COLUMN IF NOT EXISTS currency text NOT NULL DEFAULT 'USD'
ADD COLUMN IF NOT EXISTS status text NOT NULL DEFAULT 'pending'
ADD COLUMN IF NOT EXISTS currency text NOT NULL DEFAULT 'USD',
ADD COLUMN IF NOT EXISTS status text NOT NULL DEFAULT 'pending';
`);
}

Expand All @@ -21,7 +21,7 @@ export class ModifyRecurringDonationTable1707045732631
DROP COLUMN amount,
DROP COLUMN status,
DROP COLUMN interval,
DROP COLUMN currency
DROP COLUMN currency;
`);
}
}

0 comments on commit 83c2312

Please sign in to comment.