Add language management page template

This commit is contained in:
hishamco
2021-01-10 23:17:03 +03:00
parent 21e09d95da
commit 91a844c910
3 changed files with 82 additions and 0 deletions

View File

@ -8,6 +8,7 @@ CREATE TABLE [dbo].[Language](
[LanguageId] [int] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](100) NOT NULL,
[Code] [nvarchar](10) NOT NULL,
[IsCurrent] [bit] NOT NULL,
[TenantId] [int],
[CreatedBy] [nvarchar](256) NOT NULL,
[CreatedOn] [datetime] NOT NULL,