Changeset View
Changeset View
Standalone View
Standalone View
src/parser/__tests__/diff/more-newlines.svndiff
| Index: Database/tables/dbo.Account.sql | Index: Database/tables/dbo.Account.sql | ||||
| =================================================================== | =================================================================== | ||||
| --- Database/tables/dbo.Account.sql (revision 1587) | --- Database/tables/dbo.Account.sql (revision 1587) | ||||
| +++ Database/tables/dbo.Account.sql (working copy) | +++ Database/tables/dbo.Account.sql (working copy) | ||||
| @@ -23,6 +23,8 @@ | @@ -23,6 +23,8 @@ | ||||
| GO | GO | ||||
| CREATE CLUSTERED INDEX IX_Account ON [Account] ([CreationDateTime]) | CREATE CLUSTERED INDEX IX_Account ON [Account] ([CreationDateTime]) | ||||
| GO | GO | ||||
| +ALTER TABLE [dbo].[Account] ADD CONSTRAINT [UK_Account_APIKey] UNIQUE ([APIKey]) | +ALTER TABLE [dbo].[Account] ADD CONSTRAINT [UK_Account_APIKey] UNIQUE ([APIKey]) | ||||
| +GO | +GO | ||||
| ALTER TABLE [dbo].[Account] ADD CONSTRAINT [DF_Account_AccountId] DEFAULT (newid()) FOR [AccountId] | ALTER TABLE [dbo].[Account] ADD CONSTRAINT [DF_Account_AccountId] DEFAULT (newid()) FOR [AccountId] | ||||
| GO | GO | ||||
| ALTER TABLE [dbo].[Account] ADD CONSTRAINT [DF_Account_CreationDateTime] DEFAULT (getutcdate()) FOR [CreationDateTime] | ALTER TABLE [dbo].[Account] ADD CONSTRAINT [DF_Account_CreationDateTime] DEFAULT (getutcdate()) FOR [CreationDateTime] | ||||