Column | Data Type | Nullable | Default | Description |
CreditCardID | int | not null | | Primary key for CreditCard records. |
CardType | nvarchar(50) | not null | | Credit card name. |
CardNumber | nvarchar(25) | not null | | Credit card number. |
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. |