22 lines
1.2 KiB
Transact-SQL
22 lines
1.2 KiB
Transact-SQL
USE [CPMIndiaBusinessInsight]
|
|
GO
|
|
/****** Object: Table [dbo].[Login] Script Date: 5/18/2026 5:34:08 PM ******/
|
|
SET ANSI_NULLS ON
|
|
GO
|
|
SET QUOTED_IDENTIFIER ON
|
|
GO
|
|
CREATE TABLE [dbo].[Login](
|
|
[pk] [int] IDENTITY(1,1) NOT NULL,
|
|
[project_id] [int] NOT NULL,
|
|
[employee_id] [int] NOT NULL,
|
|
[login_date] [date] NOT NULL,
|
|
[login_time] [time](7) NOT NULL,
|
|
[process_id] [int] NULL,
|
|
[first_store_in_time] [time](7) NULL,
|
|
[last_store_out_time] [time](7) NULL,
|
|
[update_date] [date] NOT NULL,
|
|
[update_by] [varchar](100) NOT NULL,
|
|
[Unique_Id] [nvarchar](100) NULL
|
|
) ON [PRIMARY]
|
|
GO
|