Skip to content

Commit

Permalink
Update SQL-Script to include V1.3.2 change
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmann-consulting committed Aug 11, 2024
1 parent cc60a24 commit 11f9670
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions SQL-Server/Create_OCPP.Core.sql
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ REFERENCES [dbo].[Transactions] ([TransactionId])
GO
ALTER TABLE [dbo].[Transactions] CHECK CONSTRAINT [FK_Transactions_Transactions]
GO
CREATE NONCLUSTERED INDEX [IX_Transactions_ChargePointId_ConnectorId] ON [dbo].[Transactions]
(
[ChargePointId] ASC,
[ConnectorId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
USE [master]
GO
ALTER DATABASE [OCPP.Core] SET READ_WRITE
Expand Down

0 comments on commit 11f9670

Please sign in to comment.