-
ABP Framework version: v7.2.3
-
UI Type: Angular
-
Database System: EF Core (SQL Server)
-
Tiered (for MVC) or Auth Server Separated (for Angular): no
-
Exception message and full stack trace:
-
Steps to reproduce the issue:
Hi,
Is it mandatory to create a database with these tables for ABP to work?
SaasTenants
SaasTenantConnectionStrings
SaasEditions
PayPlans
PayPaymentRequests
PayPaymentRequestProducts
PayGatewayPlans
GdprInfo
GdprRequests
ChatConversations
ChatMessages
ChatUserMessages
ChatUsers
If not, how can I ensure that these tables are not generated by DbMigrator?
1 Answer(s)
-
0
Hi,
these tables belong to some optional modules.
You can remove the modules for your applications and after that these tables wont be created.Let me list the modules these tables belong to:
-
Multi-Tenancy/SaaS Module:
SaasTenants
SaasTenantConnectionStrings
SaasEditions -
Payment Module:
PayPlans
PayPaymentRequests
PayPaymentRequestProducts
PayGatewayPlans -
Grpd Module:
GdprInfo
GdprRequests -
Chat Module:
ChatConversations
ChatMessages
ChatUserMessages
ChatUsers
If you dont need these modules remove the dependencies from your projects and remove any references to them.
-