Difference between revisions of "Sales.CreditCard (table)"
Line 102: | Line 102: | ||
| '''Description / PK / Index | | '''Description / PK / Index | ||
− | |- | + | |- valign="top" |
| CreditCardID | | CreditCardID | ||
| int | | int | ||
Line 108: | Line 108: | ||
| | | | ||
| Primary key for CreditCard records.PK_CreditCard_CreditCardID | | Primary key for CreditCard records.PK_CreditCard_CreditCardID | ||
− | |- | + | |- valign="top" |
| CardType | | CardType | ||
| nvarchar(50) | | nvarchar(50) | ||
Line 114: | Line 114: | ||
| | | | ||
| Credit card name. | | Credit card name. | ||
− | |- | + | |- valign="top" |
| CardNumber | | CardNumber | ||
| nvarchar(25) | | nvarchar(25) | ||
Line 120: | Line 120: | ||
| | | | ||
| Credit card number.AK_CreditCard_CardNumber | | Credit card number.AK_CreditCard_CardNumber | ||
− | |- | + | |- valign="top" |
| ExpMonth | | ExpMonth | ||
| tinyint | | tinyint | ||
Line 126: | Line 126: | ||
| | | | ||
| Credit card expiration month. | | Credit card expiration month. | ||
− | |- | + | |- valign="top" |
| ExpYear | | ExpYear | ||
| smallint | | smallint | ||
Line 132: | Line 132: | ||
| | | | ||
| Credit card expiration year. | | Credit card expiration year. | ||
− | |- | + | |- valign="top" |
| ModifiedDate | | ModifiedDate | ||
| datetime | | datetime |
Revision as of 23:56, 26 November 2009
wikibot
Table | Sales.CreditCard |
Column | Data Type | Nullable | Default | PK | Index |
CreditCardID | int | not null | PK_CreditCard_CreditCardID | ||
CardType | nvarchar(50) | not null | |||
CardNumber | nvarchar(25) | not null | AK_CreditCard_CardNumber | ||
ExpMonth | tinyint | not null | |||
ExpYear | smallint | not null | |||
ModifiedDate | datetime | not null | (getdate()) |
Detail Table | Column | Referencing Column |
Sales.ContactCreditCard | CreditCardID | CreditCardID |
Sales.SalesOrderHeader | CreditCardID | CreditCardID |
automatically generated
Table | Sales.CreditCard |
Description | Customer credit card information. |
Column | Data Type | Nullable | Default | Description / PK / Index |
CreditCardID | int | not null | Primary key for CreditCard records.PK_CreditCard_CreditCardID | |
CardType | nvarchar(50) | not null | Credit card name. | |
CardNumber | nvarchar(25) | not null | Credit card number.AK_CreditCard_CardNumber | |
ExpMonth | tinyint | not null | Credit card expiration month. | |
ExpYear | smallint | not null | Credit card expiration year. | |
ModifiedDate | datetime | not null | (GETDATE()) | Date and time the record was last updated. |
Detail Table | Column | Referencing Column |
Sales.ContactCreditCard | CreditCardID | CreditCardID |
Sales.SalesOrderHeader | CreditCardID | CreditCardID |