Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

create table login(loginid int identity(1,1) primary key,

UserName varchar(30) not null, Password varchar(30) not null,


IsActive bool, CreateDate date, ModifyDate date, IPaddress varchar(40) not null)

create table forgotpassword(forgotpwdid int identity(1,1) primary key, OldPassword varchar(30) not null,
NewPassword varchar(30),not null, ConfirmPassword varchar(30) not null, IsActive bool, CreateDate date, ModifyDate date,
IPaddress varchar(40) not null)

create table Adminprofile(profileid int identity(1,1) primary key, Username varchar(30), Password varchar(30),
Mobileno varchar(30), emailid varchar(50), IsActive bool, CreateDate date, ModifyDate date, IPaddress varchar(40))

create table Category(categoryid int identity(1,1) primary key, Category varchar(50), SubCategory varchar(50),
IsActive bool, CreateDate date, ModifyDate date, IPaddress varchar(40))

create table ManageProducts(Productid int identity(1,1) primary key, ProductName varchar(100), description
varchar(200),price int, photoURL varchar(100), FK_categoryID int FOREIGN KEY REFERENCES Category(categoryid),
IsActive bool, CreateDate date, ModifyDate date, IPaddress varchar(40))

create table CMS(cmsid int identity(1,1) primary key,


title varchar(100), description varchar(200), heading varchar(100), keyword varchar(100),
IsActive bool, CreateDate date, ModifyDate date, IPaddress varchar(40))

create table ManageCustomer(customerid int identity(1,1) primary key,


CustomerName varchar(30),CustomerMobile varchar(10), CustomerEmail varchar(50),
CustomerAddress varchar(100),RegisterationDate date,
IsActive bool, CreateDate date, ModifyDate date, IPaddress varchar(40))

create table ManageOrders(Orderid int identity(1,1) primary key,


CustomerName varchar(30), OrderReceivedDate date,
Category varchar(50),
SubCategory varchar(50),
NoofItems int,
Description varchar(100),
PaymentMode varchar(50)
IsActive bool, CreateDate date, ModifyDate date, IPaddress varchar(40))

You might also like