HumanResources.EmployeePayHistory Table
Information
| Name | EmployeePayHistory |
| Schema | HumanResources |
| Row Count | 0 |
| Data Size | |
| Index Size | |
| Reserved Size | |
| Unused Size | |
| Created | 29.3.2010. 21:58:18 |
| Modified | 29.3.2010. 21:58:54 |
Extended Properties
| Name | Type | Property Name | Value |
| EmployeePayHistory | TABLE | MS_Description | Employee pay history. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | EmployeeID | int |   | | HumanResources.Employee.EmployeeID | |   | |
|   |   |   | RateChangeDate | datetime |   | | | |   | |
| |   |   | Rate | money |   | | | |   | |
| |   |   | PayFrequency | tinyint |   | | | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
Check Constraints
Foreign Key Constraints
SQL Script
CREATE TABLE [HumanResources].[EmployeePayHistory] (
[EmployeeID] int NOT NULL,
[RateChangeDate] datetime NOT NULL,
[Rate] money NOT NULL,
[PayFrequency] tinyint NOT NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);