- Timestamp:
- 06/18/13 11:39:31 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Billing.Test/DDLScript.sql
r9619 r9641 79 79 create table [dbo].[Users] ( 80 80 [UserId] [bigint] not null identity, 81 [ContactInformationId] [bigint] not null, 81 82 [Name] [nvarchar](max) null, 82 83 primary key ([UserId]) … … 91 92 alter table [dbo].[UsageRecords] add constraint [UsageRecord_Product] foreign key ([ProductId]) references [dbo].[Products]([ProductId]); 92 93 alter table [dbo].[UsageRecords] add constraint [UsageRecord_User] foreign key ([UserId]) references [dbo].[Users]([UserId]); 94 alter table [dbo].[Users] add constraint [User_ContactInformation] foreign key ([ContactInformationId]) references [dbo].[ContactInformations]([ContactInformationId]); 93 95 alter table [dbo].[PaymentInformations] add constraint [User_PaymentInformation] foreign key ([UserId]) references [dbo].[Users]([UserId]);
Note: See TracChangeset
for help on using the changeset viewer.