Stored Data
note
To understand how collections and documents work, see Data Sctructure
Finance Data
- Finance
-
- Method #1
-
-
- Manager: core/finance app
-
-
-
- method id
-
-
-
- Method type: bank, credit, debit
-
-
-
- Method thumbnail: id
-
-
-
- Provider: stripe, visa
-
-
-
- Provider logo: id
-
-
-
- Primary: true
-
-
-
- Address: location id
-
-
-
bank_namevarchar(255) NOT NULL,
-
-
-
bank_codevarchar(255) NOT NULL,
-
-
-
bank_addressvarchar(255) NOT NULL,
-
-
-
ifsc_novarchar(255) NOT NULL,
-
-
-
account_novarchar(255) NOT NULL,
-
-
-
- Verified: false
-
Repprt Types
In the laravel code this is reperd to as repoert resion or "tbl_report_reason"
- report_type
-
- type_#1
-
-
- name
-
-
-
- description
-
-
-
reasonvarchar(255) NOT NULL,
-
-
-
statusint(11) NOT NULL DEFAULT 1,
-
-
-
created_attimestamp NOT NULL DEFAULT current_timestamp(),
-
-
-
updated_attimestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
-
-
-
- created_by (user_id)
-
Reports
- report
-
- report_#1
-
-
- report_type: (report_type_id)
-
-
-
- content (content_id)
-
-
-
- created by (user_id)
-
-
-
statusint(11) NOT NULL DEFAULT 1,
-
-
-
created_attimestamp NOT NULL DEFAULT current_timestamp(),
-
-
-
updated_attimestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
-
-
-
- votes/reports (number)
- reporters
-
- report_#1
-
-
- user
-
-
-
- time
-
-