-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbackup.sql
More file actions
2518 lines (1777 loc) · 81.6 KB
/
backup.sql
File metadata and controls
2518 lines (1777 loc) · 81.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 13.18
-- Dumped by pg_dump version 13.18
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: admin_dashboard_adminsettings; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.admin_dashboard_adminsettings (
id integer NOT NULL,
site_name character varying(255),
site_description text,
admin_name character varying(255) DEFAULT 'Admin'::character varying,
admin_email character varying(255) DEFAULT 'admin@example.com'::character varying,
admin_phone character varying(15),
admin_avatar character varying(255),
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE public.admin_dashboard_adminsettings OWNER TO postgres;
--
-- Name: admin_dashboard_adminsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.admin_dashboard_adminsettings_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.admin_dashboard_adminsettings_id_seq OWNER TO postgres;
--
-- Name: admin_dashboard_adminsettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.admin_dashboard_adminsettings_id_seq OWNED BY public.admin_dashboard_adminsettings.id;
--
-- Name: analytics_activitylog; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.analytics_activitylog (
id bigint NOT NULL,
action character varying(255) NOT NULL,
"timestamp" timestamp with time zone NOT NULL,
user_id uuid NOT NULL
);
ALTER TABLE public.analytics_activitylog OWNER TO postgres;
--
-- Name: analytics_activitylog_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.analytics_activitylog ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.analytics_activitylog_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO postgres;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_group_permissions (
id bigint NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO postgres;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_permission (
id integer NOT NULL,
name character varying(255) NOT NULL,
content_type_id integer NOT NULL,
codename character varying(100) NOT NULL
);
ALTER TABLE public.auth_permission OWNER TO postgres;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_permission_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_admin_log (
id integer NOT NULL,
action_time timestamp with time zone NOT NULL,
object_id text,
object_repr character varying(200) NOT NULL,
action_flag smallint NOT NULL,
change_message text NOT NULL,
content_type_id integer,
user_id uuid NOT NULL,
CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
);
ALTER TABLE public.django_admin_log OWNER TO postgres;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_admin_log_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_clockedschedule; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_celery_beat_clockedschedule (
id integer NOT NULL,
clocked_time timestamp with time zone NOT NULL
);
ALTER TABLE public.django_celery_beat_clockedschedule OWNER TO postgres;
--
-- Name: django_celery_beat_clockedschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_celery_beat_clockedschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_clockedschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_crontabschedule; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_celery_beat_crontabschedule (
id integer NOT NULL,
minute character varying(240) NOT NULL,
hour character varying(96) NOT NULL,
day_of_week character varying(64) NOT NULL,
day_of_month character varying(124) NOT NULL,
month_of_year character varying(64) NOT NULL,
timezone character varying(63) NOT NULL
);
ALTER TABLE public.django_celery_beat_crontabschedule OWNER TO postgres;
--
-- Name: django_celery_beat_crontabschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_celery_beat_crontabschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_crontabschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_intervalschedule; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_celery_beat_intervalschedule (
id integer NOT NULL,
every integer NOT NULL,
period character varying(24) NOT NULL
);
ALTER TABLE public.django_celery_beat_intervalschedule OWNER TO postgres;
--
-- Name: django_celery_beat_intervalschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_celery_beat_intervalschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_intervalschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_periodictask; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_celery_beat_periodictask (
id integer NOT NULL,
name character varying(200) NOT NULL,
task character varying(200) NOT NULL,
args text NOT NULL,
kwargs text NOT NULL,
queue character varying(200),
exchange character varying(200),
routing_key character varying(200),
expires timestamp with time zone,
enabled boolean NOT NULL,
last_run_at timestamp with time zone,
total_run_count integer NOT NULL,
date_changed timestamp with time zone NOT NULL,
description text NOT NULL,
crontab_id integer,
interval_id integer,
solar_id integer,
one_off boolean NOT NULL,
start_time timestamp with time zone,
priority integer,
headers text NOT NULL,
clocked_id integer,
expire_seconds integer,
CONSTRAINT django_celery_beat_periodictask_expire_seconds_check CHECK ((expire_seconds >= 0)),
CONSTRAINT django_celery_beat_periodictask_priority_check CHECK ((priority >= 0)),
CONSTRAINT django_celery_beat_periodictask_total_run_count_check CHECK ((total_run_count >= 0))
);
ALTER TABLE public.django_celery_beat_periodictask OWNER TO postgres;
--
-- Name: django_celery_beat_periodictask_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_celery_beat_periodictask ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_periodictask_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_celery_beat_periodictasks; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_celery_beat_periodictasks (
ident smallint NOT NULL,
last_update timestamp with time zone NOT NULL
);
ALTER TABLE public.django_celery_beat_periodictasks OWNER TO postgres;
--
-- Name: django_celery_beat_solarschedule; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_celery_beat_solarschedule (
id integer NOT NULL,
event character varying(24) NOT NULL,
latitude numeric(9,6) NOT NULL,
longitude numeric(9,6) NOT NULL
);
ALTER TABLE public.django_celery_beat_solarschedule OWNER TO postgres;
--
-- Name: django_celery_beat_solarschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_celery_beat_solarschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_celery_beat_solarschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model character varying(100) NOT NULL
);
ALTER TABLE public.django_content_type OWNER TO postgres;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_content_type_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_migrations (
id bigint NOT NULL,
app character varying(255) NOT NULL,
name character varying(255) NOT NULL,
applied timestamp with time zone NOT NULL
);
ALTER TABLE public.django_migrations OWNER TO postgres;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_migrations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_date timestamp with time zone NOT NULL
);
ALTER TABLE public.django_session OWNER TO postgres;
--
-- Name: expense_categories; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.expense_categories (
id uuid DEFAULT gen_random_uuid() NOT NULL,
user_id uuid NOT NULL,
name character varying(100) NOT NULL
);
ALTER TABLE public.expense_categories OWNER TO postgres;
--
-- Name: group_expenses_group; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.group_expenses_group (
id bigint NOT NULL,
name character varying(255) NOT NULL,
description text,
created_at timestamp with time zone NOT NULL
);
ALTER TABLE public.group_expenses_group OWNER TO postgres;
--
-- Name: group_expenses_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.group_expenses_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.group_expenses_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: group_expenses_groupexpense; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.group_expenses_groupexpense (
id bigint NOT NULL,
description character varying(255) NOT NULL,
amount numeric(10,2) NOT NULL,
created_at timestamp with time zone NOT NULL,
category character varying(100) NOT NULL,
group_id bigint NOT NULL,
payer_id uuid NOT NULL
);
ALTER TABLE public.group_expenses_groupexpense OWNER TO postgres;
--
-- Name: group_expenses_groupexpense_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.group_expenses_groupexpense ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.group_expenses_groupexpense_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: group_expenses_groupmember; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.group_expenses_groupmember (
id bigint NOT NULL,
joined_at timestamp with time zone NOT NULL,
group_id bigint NOT NULL,
user_id uuid NOT NULL
);
ALTER TABLE public.group_expenses_groupmember OWNER TO postgres;
--
-- Name: group_expenses_groupmember_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.group_expenses_groupmember ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.group_expenses_groupmember_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: group_expenses_settlement; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.group_expenses_settlement (
id bigint NOT NULL,
amount numeric(10,2) NOT NULL,
razorpay_payment_id character varying(255),
settled_at timestamp with time zone NOT NULL,
is_settled boolean NOT NULL,
group_id bigint NOT NULL,
payee_id uuid NOT NULL,
payer_id uuid NOT NULL
);
ALTER TABLE public.group_expenses_settlement OWNER TO postgres;
--
-- Name: group_expenses_settlement_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.group_expenses_settlement ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.group_expenses_settlement_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: insights_budgetinsight; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.insights_budgetinsight (
id bigint NOT NULL,
category character varying(100) NOT NULL,
average_spending numeric(10,2) NOT NULL,
forecasted_spending numeric(10,2) NOT NULL,
savings_recommendation text,
created_at timestamp with time zone NOT NULL,
user_id uuid NOT NULL
);
ALTER TABLE public.insights_budgetinsight OWNER TO postgres;
--
-- Name: insights_budgetinsight_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.insights_budgetinsight ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.insights_budgetinsight_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: insights_savingsgoal; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.insights_savingsgoal (
id bigint NOT NULL,
goal_name character varying(255) NOT NULL,
target_amount numeric(10,2) NOT NULL,
saved_amount numeric(10,2) NOT NULL,
deadline date NOT NULL,
status character varying(20) NOT NULL,
created_at timestamp with time zone NOT NULL,
user_id uuid NOT NULL
);
ALTER TABLE public.insights_savingsgoal OWNER TO postgres;
--
-- Name: insights_savingsgoal_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.insights_savingsgoal ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.insights_savingsgoal_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: notifications_notification; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.notifications_notification (
id bigint NOT NULL,
recipients character varying(10) NOT NULL,
title character varying(255) NOT NULL,
message text NOT NULL,
status character varying(10) NOT NULL,
"timestamp" timestamp with time zone NOT NULL
);
ALTER TABLE public.notifications_notification OWNER TO postgres;
--
-- Name: notifications_notification_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.notifications_notification ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.notifications_notification_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payments_payment; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.payments_payment (
id bigint NOT NULL,
razorpay_order_id character varying(100) NOT NULL,
razorpay_payment_id character varying(100),
razorpay_signature character varying(255),
amount numeric(10,2) NOT NULL,
status character varying(20) NOT NULL,
created_at timestamp with time zone NOT NULL,
user_id uuid NOT NULL
);
ALTER TABLE public.payments_payment OWNER TO postgres;
--
-- Name: payments_payment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.payments_payment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payments_payment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payments_subscription; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.payments_subscription (
id bigint NOT NULL,
razorpay_subscription_id character varying(255) NOT NULL,
plan character varying(50) NOT NULL,
status character varying(50) NOT NULL,
start_date timestamp with time zone NOT NULL,
end_date timestamp with time zone NOT NULL,
created_at timestamp with time zone NOT NULL,
user_id uuid NOT NULL
);
ALTER TABLE public.payments_subscription OWNER TO postgres;
--
-- Name: payments_subscription_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.payments_subscription ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payments_subscription_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: token_blacklist_blacklistedtoken; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.token_blacklist_blacklistedtoken (
id bigint NOT NULL,
blacklisted_at timestamp with time zone NOT NULL,
token_id bigint NOT NULL
);
ALTER TABLE public.token_blacklist_blacklistedtoken OWNER TO postgres;
--
-- Name: token_blacklist_blacklistedtoken_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.token_blacklist_blacklistedtoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.token_blacklist_blacklistedtoken_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: token_blacklist_outstandingtoken; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.token_blacklist_outstandingtoken (
id bigint NOT NULL,
token text NOT NULL,
created_at timestamp with time zone,
expires_at timestamp with time zone NOT NULL,
user_id uuid,
jti character varying(255) NOT NULL
);
ALTER TABLE public.token_blacklist_outstandingtoken OWNER TO postgres;
--
-- Name: token_blacklist_outstandingtoken_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.token_blacklist_outstandingtoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.token_blacklist_outstandingtoken_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: transactions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.transactions (
id uuid NOT NULL,
amount numeric(10,2) NOT NULL,
description text NOT NULL,
date date NOT NULL,
created_at timestamp with time zone NOT NULL,
user_id uuid NOT NULL,
updated_at timestamp with time zone NOT NULL,
category_type character varying(50) DEFAULT 'expense'::character varying,
category_id uuid
);
ALTER TABLE public.transactions OWNER TO postgres;
--
-- Name: user_budget; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.user_budget (
id bigint NOT NULL,
monthly_budget numeric(10,2) NOT NULL,
created_at timestamp with time zone NOT NULL,
user_id uuid NOT NULL
);
ALTER TABLE public.user_budget OWNER TO postgres;
--
-- Name: transactions_budget_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.user_budget ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.transactions_budget_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: users_user; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users_user (
password character varying(128) NOT NULL,
last_login timestamp with time zone,
is_superuser boolean NOT NULL,
username character varying(150) NOT NULL,
first_name character varying(150) NOT NULL,
last_name character varying(150) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone NOT NULL,
id uuid NOT NULL,
email character varying(254) NOT NULL,
phone_no character varying(15),
is_premium boolean NOT NULL,
role character varying(10) NOT NULL
);
ALTER TABLE public.users_user OWNER TO postgres;
--
-- Name: users_user_groups; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users_user_groups (
id bigint NOT NULL,
user_id uuid NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.users_user_groups OWNER TO postgres;
--
-- Name: users_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.users_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.users_user_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: users_user_user_permissions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users_user_user_permissions (
id bigint NOT NULL,
user_id uuid NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.users_user_user_permissions OWNER TO postgres;
--
-- Name: users_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.users_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.users_user_user_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: admin_dashboard_adminsettings id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.admin_dashboard_adminsettings ALTER COLUMN id SET DEFAULT nextval('public.admin_dashboard_adminsettings_id_seq'::regclass);
--
-- Data for Name: admin_dashboard_adminsettings; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.admin_dashboard_adminsettings (id, site_name, site_description, admin_name, admin_email, admin_phone, admin_avatar, created_at, updated_at) FROM stdin;
1 Finance Tracker A simple finance tracking application Admin admin@example.com 1234567890 2025-02-25 14:48:36.990397 2025-02-25 14:48:36.990443
\.
--
-- Data for Name: analytics_activitylog; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.analytics_activitylog (id, action, "timestamp", user_id) FROM stdin;
\.
--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_group (id, name) FROM stdin;
\.
--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
\.
--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin;
1 Can add log entry 1 add_logentry
2 Can change log entry 1 change_logentry
3 Can delete log entry 1 delete_logentry
4 Can view log entry 1 view_logentry
5 Can add permission 2 add_permission
6 Can change permission 2 change_permission
7 Can delete permission 2 delete_permission
8 Can view permission 2 view_permission
9 Can add group 3 add_group
10 Can change group 3 change_group
11 Can delete group 3 delete_group
12 Can view group 3 view_group
13 Can add content type 4 add_contenttype
14 Can change content type 4 change_contenttype
15 Can delete content type 4 delete_contenttype
16 Can view content type 4 view_contenttype
17 Can add session 5 add_session
18 Can change session 5 change_session
19 Can delete session 5 delete_session
20 Can view session 5 view_session
21 Can add user 6 add_user
22 Can change user 6 change_user
23 Can delete user 6 delete_user
24 Can view user 6 view_user
25 Can add transaction 7 add_transaction
26 Can change transaction 7 change_transaction
27 Can delete transaction 7 delete_transaction
28 Can view transaction 7 view_transaction
29 Can add budget 8 add_budget
30 Can change budget 8 change_budget
31 Can delete budget 8 delete_budget
32 Can view budget 8 view_budget
33 Can add category 9 add_category
34 Can change category 9 change_category
35 Can delete category 9 delete_category
36 Can view category 9 view_category
37 Can add blacklisted token 10 add_blacklistedtoken