1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
go
/*==============================================================*/
/* Table : ActorCompany__ActorAddress */
/*==============================================================*/
create table ACT.ActorCompany__ActorAddress (
Id int identity(1, 1),
FK_ActorCompany int null,
FK_ActorCompanyAddressType int not null,
FK_ActorAddress int not null,
SortIndex int not null,
rowversion timestamp not null,
constraint PK_Contact_Company_Address primary key (Id)
on "PRIMARY"
)
on "PRIMARY"
go
execute sys.sp_addextendedproperty 'MS_Description',
'First address is the postal address',
'user', 'ACT', 'table', 'ActorCompany__ActorAddress'
go |
Partager