Skip to content

Commit

Permalink
chore: Fix fund id col name in donations
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriytkach committed Dec 25, 2023
1 parent 36e65f0 commit 5cf7e3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class DynamoDbDonationClientDonation implements DonationStorageClient {
public static final String COL_TIME = "time";
public static final String COL_PERSON = "person";
public static final String COL_ID = "id";
public static final String COL_FUND_ID = "find_id";
public static final String COL_FUND_ID = "fund_id";

public static final String[] ALL_ATTRIBUTES_WITHOUT_FUND_ID = new String[] {
COL_ID,
Expand Down

0 comments on commit 5cf7e3d

Please sign in to comment.