You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE ""FooSelves"" ([FooSelfId] INTEGER, [FooId] int NOT NULL, [Number] int NOT NULL, PRIMARY KEY(FooSelfId), FOREIGN KEY (FooId) REFERENCES ""Foos""(FooId) ON DELETE CASCADE);
23
+
CREATE TABLE ""FooSteps"" ([FooStepId] INTEGER, [FooId] int NOT NULL, [Number] int NOT NULL, PRIMARY KEY(FooStepId), FOREIGN KEY (FooId) REFERENCES ""Foos""(FooId) ON DELETE CASCADE);
24
+
CREATE INDEX ""IX_MyTable_Id"" ON ""MyTable"" (Id);
25
+
CREATE INDEX IX_Team_TeamsName ON ""MyTable"" (Name);
26
+
27
+
CREATE INDEX ""IX_TeamPlayer_Number"" ON ""TeamPlayer"" (Number);
28
+
CREATE UNIQUE INDEX IX_TeamPlayer_NumberPerTeam ON ""TeamPlayer"" (Number, TeamId);
29
+
CREATE INDEX ""IX_TeamPlayer_Mentor_Id"" ON ""TeamPlayer"" (Mentor_Id);
30
+
CREATE UNIQUE INDEX IX_Stadion_Main ON ""Stadions"" (Street, Name);
31
+
CREATE INDEX ""IX_Stadion_Team_Id"" ON ""Stadions"" (Team_Id);
32
+
CREATE INDEX ""IX_Foo_FooSelf1Id"" ON ""Foos"" (FooSelf1Id);
33
+
CREATE INDEX ""IX_Foo_FooSelf2Id"" ON ""Foos"" (FooSelf2Id);
34
+
CREATE INDEX ""IX_Foo_FooSelf3Id"" ON ""Foos"" (FooSelf3Id);
35
+
CREATE INDEX ""IX_FooSelf_FooId"" ON ""FooSelves"" (FooId);
36
+
CREATE INDEX ""IX_FooStep_FooId"" ON ""FooSteps"" (FooId);";
37
+
38
+
privatestaticstringgeneratedSql;
39
+
40
+
// Does not work on the build server. No clue why.
0 commit comments