Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Version bump for fyle-accounting-mapping fields #690

Merged
merged 2 commits into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ django-sendgrid-v5==1.2.0
enum34==1.1.10
future==0.18.2
fyle==0.37.0
fyle-accounting-mappings==1.36.1
fyle-accounting-mappings==1.36.2
fyle-integrations-platform-connector==1.39.3
fyle-rest-auth==1.7.2
gunicorn==20.1.0
Expand Down
19 changes: 11 additions & 8 deletions tests/sql_fixtures/reset_db_fixtures/reset_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,9 @@ CREATE TABLE public.mapping_settings (
import_to_fyle boolean NOT NULL,
is_custom boolean NOT NULL,
source_placeholder text,
expense_field_id integer
expense_field_id integer,
created_by character varying(255),
updated_by character varying(255)
);


Expand Down Expand Up @@ -8013,6 +8015,7 @@ COPY public.django_migrations (id, app, name, applied) FROM stdin;
210 fyle 0037_auto_20241226_0929 2024-12-26 09:48:19.921189+00
211 mappings 0016_auto_20241226_0929 2024-12-26 09:48:19.963414+00
212 workspaces 0043_auto_20241224_1102 2024-12-26 09:48:19.987821+00
213 fyle_accounting_mappings 0028_auto_20241226_1030 2024-12-26 11:00:11.334548+00
\.


Expand Down Expand Up @@ -11721,12 +11724,12 @@ COPY public.last_export_details (id, last_exported_at, next_export, export_mode,
-- Data for Name: mapping_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.mapping_settings (id, source_field, destination_field, created_at, updated_at, workspace_id, import_to_fyle, is_custom, source_placeholder, expense_field_id) FROM stdin;
1 TAX_GROUP TAX_ITEM 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 2 f f \N \N
5 PROJECT PROJECT 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 1 t f \N \N
6 COST_CENTER DEPARTMENT 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 1 t f \N \N
10 DUMMY ASHWINTEST1 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 49 t t \N \N
30 CORPORATE_CARD CREDIT_CARD_ACCOUNT 2022-05-10 11:54:10.731264+00 2022-05-10 11:54:10.731264+00 49 t f \N \N
COPY public.mapping_settings (id, source_field, destination_field, created_at, updated_at, workspace_id, import_to_fyle, is_custom, source_placeholder, expense_field_id, created_by, updated_by) FROM stdin;
1 TAX_GROUP TAX_ITEM 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 2 f f \N \N \N \N
5 PROJECT PROJECT 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 1 t f \N \N \N \N
6 COST_CENTER DEPARTMENT 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 1 t f \N \N \N \N
10 DUMMY ASHWINTEST1 2021-11-16 04:18:15.823753+00 2021-11-16 04:20:09.978098+00 49 t t \N \N \N \N
30 CORPORATE_CARD CREDIT_CARD_ACCOUNT 2022-05-10 11:54:10.731264+00 2022-05-10 11:54:10.731264+00 49 t f \N \N \N \N
\.


Expand Down Expand Up @@ -11924,7 +11927,7 @@ SELECT pg_catalog.setval('public.django_content_type_id_seq', 47, true);
-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.django_migrations_id_seq', 212, true);
SELECT pg_catalog.setval('public.django_migrations_id_seq', 213, true);


--
Expand Down
Loading