diff --git a/framework/src/Volo.Abp.Data/Volo/Abp/Data/AbpCommonDbProperties.cs b/framework/src/Volo.Abp.Data/Volo/Abp/Data/AbpCommonDbProperties.cs
new file mode 100644
index 0000000000..726b8bd5f8
--- /dev/null
+++ b/framework/src/Volo.Abp.Data/Volo/Abp/Data/AbpCommonDbProperties.cs
@@ -0,0 +1,18 @@
+namespace Volo.Abp.Data
+{
+ public static class AbpCommonDbProperties
+ {
+ ///
+ /// This table prefix is shared by most of the ABP modules.
+ /// You can change it to set table prefix for all modules using this.
+ ///
+ /// Default value: "Abp".
+ ///
+ public static string DbTablePrefix { get; } = "Abp";
+
+ ///
+ /// Default value: null.
+ ///
+ public static string DbSchema { get; } = null;
+ }
+}