tgstation-server 6.16.0
The /tg/station 13 server suite
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Pages
20250302232622_SLAddOidcConnections.Designer.cs
Go to the documentation of this file.
1// <auto-generated />
2using System;
3
4using Microsoft.EntityFrameworkCore;
5using Microsoft.EntityFrameworkCore.Infrastructure;
6using Microsoft.EntityFrameworkCore.Migrations;
7
9{
10 [DbContext(typeof(SqliteDatabaseContext))]
11 [Migration("20250302232622_SLAddOidcConnections")]
12 partial class SLAddOidcConnections
13 {
15 protected override void BuildTargetModel(ModelBuilder modelBuilder)
16 {
17#pragma warning disable 612, 618
18 modelBuilder.HasAnnotation("ProductVersion", "8.0.13");
19
20 modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
21 {
22 b.Property<long?>("Id")
23 .ValueGeneratedOnAdd()
24 .HasColumnType("INTEGER");
25
26 b.Property<ushort?>("ChannelLimit")
27 .IsRequired()
28 .HasColumnType("INTEGER");
29
30 b.Property<string>("ConnectionString")
31 .IsRequired()
32 .HasMaxLength(10000)
33 .HasColumnType("TEXT");
34
35 b.Property<bool?>("Enabled")
36 .HasColumnType("INTEGER");
37
38 b.Property<long>("InstanceId")
39 .HasColumnType("INTEGER");
40
41 b.Property<string>("Name")
42 .IsRequired()
43 .HasMaxLength(100)
44 .HasColumnType("TEXT");
45
46 b.Property<int>("Provider")
47 .HasColumnType("INTEGER");
48
49 b.Property<uint?>("ReconnectionInterval")
50 .IsRequired()
51 .HasColumnType("INTEGER");
52
53 b.HasKey("Id");
54
55 b.HasIndex("InstanceId", "Name")
56 .IsUnique();
57
58 b.ToTable("ChatBots");
59 });
60
61 modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
62 {
63 b.Property<long>("Id")
64 .ValueGeneratedOnAdd()
65 .HasColumnType("INTEGER");
66
67 b.Property<long>("ChatSettingsId")
68 .HasColumnType("INTEGER");
69
70 b.Property<ulong?>("DiscordChannelId")
71 .HasColumnType("INTEGER");
72
73 b.Property<string>("IrcChannel")
74 .HasMaxLength(100)
75 .HasColumnType("TEXT");
76
77 b.Property<bool?>("IsAdminChannel")
78 .IsRequired()
79 .HasColumnType("INTEGER");
80
81 b.Property<bool?>("IsSystemChannel")
82 .IsRequired()
83 .HasColumnType("INTEGER");
84
85 b.Property<bool?>("IsUpdatesChannel")
86 .IsRequired()
87 .HasColumnType("INTEGER");
88
89 b.Property<bool?>("IsWatchdogChannel")
90 .IsRequired()
91 .HasColumnType("INTEGER");
92
93 b.Property<string>("Tag")
94 .HasMaxLength(10000)
95 .HasColumnType("TEXT");
96
97 b.HasKey("Id");
98
99 b.HasIndex("ChatSettingsId", "DiscordChannelId")
100 .IsUnique();
101
102 b.HasIndex("ChatSettingsId", "IrcChannel")
103 .IsUnique();
104
105 b.ToTable("ChatChannels");
106 });
107
108 modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
109 {
110 b.Property<long?>("Id")
111 .ValueGeneratedOnAdd()
112 .HasColumnType("INTEGER");
113
114 b.Property<int?>("DMApiMajorVersion")
115 .HasColumnType("INTEGER");
116
117 b.Property<int?>("DMApiMinorVersion")
118 .HasColumnType("INTEGER");
119
120 b.Property<int?>("DMApiPatchVersion")
121 .HasColumnType("INTEGER");
122
123 b.Property<Guid?>("DirectoryName")
124 .IsRequired()
125 .HasColumnType("TEXT");
126
127 b.Property<string>("DmeName")
128 .IsRequired()
129 .HasColumnType("TEXT");
130
131 b.Property<string>("EngineVersion")
132 .IsRequired()
133 .HasColumnType("TEXT");
134
135 b.Property<long?>("GitHubDeploymentId")
136 .HasColumnType("INTEGER");
137
138 b.Property<long?>("GitHubRepoId")
139 .HasColumnType("INTEGER");
140
141 b.Property<long>("JobId")
142 .HasColumnType("INTEGER");
143
144 b.Property<int?>("MinimumSecurityLevel")
145 .HasColumnType("INTEGER");
146
147 b.Property<string>("Output")
148 .IsRequired()
149 .HasColumnType("TEXT");
150
151 b.Property<string>("RepositoryOrigin")
152 .HasColumnType("TEXT");
153
154 b.Property<long>("RevisionInformationId")
155 .HasColumnType("INTEGER");
156
157 b.HasKey("Id");
158
159 b.HasIndex("DirectoryName");
160
161 b.HasIndex("JobId")
162 .IsUnique();
163
164 b.HasIndex("RevisionInformationId");
165
166 b.ToTable("CompileJobs");
167 });
168
169 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
170 {
171 b.Property<long>("Id")
172 .ValueGeneratedOnAdd()
173 .HasColumnType("INTEGER");
174
175 b.Property<string>("AdditionalParameters")
176 .IsRequired()
177 .HasMaxLength(10000)
178 .HasColumnType("TEXT");
179
180 b.Property<bool?>("AllowWebClient")
181 .IsRequired()
182 .HasColumnType("INTEGER");
183
184 b.Property<bool?>("AutoStart")
185 .IsRequired()
186 .HasColumnType("INTEGER");
187
188 b.Property<bool?>("DumpOnHealthCheckRestart")
189 .IsRequired()
190 .HasColumnType("INTEGER");
191
192 b.Property<uint?>("HealthCheckSeconds")
193 .IsRequired()
194 .HasColumnType("INTEGER");
195
196 b.Property<long>("InstanceId")
197 .HasColumnType("INTEGER");
198
199 b.Property<bool?>("LogOutput")
200 .IsRequired()
201 .HasColumnType("INTEGER");
202
203 b.Property<uint?>("MapThreads")
204 .IsRequired()
205 .HasColumnType("INTEGER");
206
207 b.Property<bool?>("Minidumps")
208 .IsRequired()
209 .HasColumnType("INTEGER");
210
211 b.Property<ushort?>("OpenDreamTopicPort")
212 .IsRequired()
213 .HasColumnType("INTEGER");
214
215 b.Property<ushort?>("Port")
216 .IsRequired()
217 .HasColumnType("INTEGER");
218
219 b.Property<int>("SecurityLevel")
220 .HasColumnType("INTEGER");
221
222 b.Property<bool?>("StartProfiler")
223 .IsRequired()
224 .HasColumnType("INTEGER");
225
226 b.Property<uint?>("StartupTimeout")
227 .IsRequired()
228 .HasColumnType("INTEGER");
229
230 b.Property<uint?>("TopicRequestTimeout")
231 .IsRequired()
232 .HasColumnType("INTEGER");
233
234 b.Property<int>("Visibility")
235 .HasColumnType("INTEGER");
236
237 b.HasKey("Id");
238
239 b.HasIndex("InstanceId")
240 .IsUnique();
241
242 b.ToTable("DreamDaemonSettings");
243 });
244
245 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
246 {
247 b.Property<long>("Id")
248 .ValueGeneratedOnAdd()
249 .HasColumnType("INTEGER");
250
251 b.Property<ushort?>("ApiValidationPort")
252 .IsRequired()
253 .HasColumnType("INTEGER");
254
255 b.Property<int>("ApiValidationSecurityLevel")
256 .HasColumnType("INTEGER");
257
258 b.Property<string>("CompilerAdditionalArguments")
259 .HasMaxLength(10000)
260 .HasColumnType("TEXT");
261
262 b.Property<int>("DMApiValidationMode")
263 .HasColumnType("INTEGER");
264
265 b.Property<long>("InstanceId")
266 .HasColumnType("INTEGER");
267
268 b.Property<string>("ProjectName")
269 .HasMaxLength(10000)
270 .HasColumnType("TEXT");
271
272 b.Property<TimeSpan?>("Timeout")
273 .IsRequired()
274 .HasColumnType("TEXT");
275
276 b.HasKey("Id");
277
278 b.HasIndex("InstanceId")
279 .IsUnique();
280
281 b.ToTable("DreamMakerSettings");
282 });
283
284 modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
285 {
286 b.Property<long?>("Id")
287 .ValueGeneratedOnAdd()
288 .HasColumnType("INTEGER");
289
290 b.Property<string>("AutoStartCron")
291 .IsRequired()
292 .HasMaxLength(1000)
293 .HasColumnType("TEXT");
294
295 b.Property<string>("AutoStopCron")
296 .IsRequired()
297 .HasMaxLength(1000)
298 .HasColumnType("TEXT");
299
300 b.Property<string>("AutoUpdateCron")
301 .IsRequired()
302 .HasMaxLength(1000)
303 .HasColumnType("TEXT");
304
305 b.Property<uint?>("AutoUpdateInterval")
306 .IsRequired()
307 .HasColumnType("INTEGER");
308
309 b.Property<ushort?>("ChatBotLimit")
310 .IsRequired()
311 .HasColumnType("INTEGER");
312
313 b.Property<int>("ConfigurationType")
314 .HasColumnType("INTEGER");
315
316 b.Property<string>("Name")
317 .IsRequired()
318 .HasMaxLength(100)
319 .HasColumnType("TEXT");
320
321 b.Property<bool?>("Online")
322 .IsRequired()
323 .HasColumnType("INTEGER");
324
325 b.Property<string>("Path")
326 .IsRequired()
327 .HasColumnType("TEXT");
328
329 b.Property<string>("SwarmIdentifer")
330 .HasColumnType("TEXT");
331
332 b.HasKey("Id");
333
334 b.HasIndex("Path", "SwarmIdentifer")
335 .IsUnique();
336
337 b.ToTable("Instances");
338 });
339
340 modelBuilder.Entity("Tgstation.Server.Host.Models.InstancePermissionSet", b =>
341 {
342 b.Property<long>("Id")
343 .ValueGeneratedOnAdd()
344 .HasColumnType("INTEGER");
345
346 b.Property<ulong>("ChatBotRights")
347 .HasColumnType("INTEGER");
348
349 b.Property<ulong>("ConfigurationRights")
350 .HasColumnType("INTEGER");
351
352 b.Property<ulong>("DreamDaemonRights")
353 .HasColumnType("INTEGER");
354
355 b.Property<ulong>("DreamMakerRights")
356 .HasColumnType("INTEGER");
357
358 b.Property<ulong>("EngineRights")
359 .HasColumnType("INTEGER");
360
361 b.Property<long>("InstanceId")
362 .HasColumnType("INTEGER");
363
364 b.Property<ulong>("InstancePermissionSetRights")
365 .HasColumnType("INTEGER");
366
367 b.Property<long>("PermissionSetId")
368 .HasColumnType("INTEGER");
369
370 b.Property<ulong>("RepositoryRights")
371 .HasColumnType("INTEGER");
372
373 b.HasKey("Id");
374
375 b.HasIndex("InstanceId");
376
377 b.HasIndex("PermissionSetId", "InstanceId")
378 .IsUnique();
379
380 b.ToTable("InstancePermissionSets");
381 });
382
383 modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
384 {
385 b.Property<long?>("Id")
386 .ValueGeneratedOnAdd()
387 .HasColumnType("INTEGER");
388
389 b.Property<ulong?>("CancelRight")
390 .HasColumnType("INTEGER");
391
392 b.Property<ulong?>("CancelRightsType")
393 .HasColumnType("INTEGER");
394
395 b.Property<bool?>("Cancelled")
396 .IsRequired()
397 .HasColumnType("INTEGER");
398
399 b.Property<long?>("CancelledById")
400 .HasColumnType("INTEGER");
401
402 b.Property<string>("Description")
403 .IsRequired()
404 .HasColumnType("TEXT");
405
406 b.Property<uint?>("ErrorCode")
407 .HasColumnType("INTEGER");
408
409 b.Property<string>("ExceptionDetails")
410 .HasColumnType("TEXT");
411
412 b.Property<long>("InstanceId")
413 .HasColumnType("INTEGER");
414
415 b.Property<byte>("JobCode")
416 .HasColumnType("INTEGER");
417
418 b.Property<DateTimeOffset?>("StartedAt")
419 .IsRequired()
420 .HasColumnType("TEXT");
421
422 b.Property<long>("StartedById")
423 .HasColumnType("INTEGER");
424
425 b.Property<DateTimeOffset?>("StoppedAt")
426 .HasColumnType("TEXT");
427
428 b.HasKey("Id");
429
430 b.HasIndex("CancelledById");
431
432 b.HasIndex("InstanceId");
433
434 b.HasIndex("StartedById");
435
436 b.ToTable("Jobs");
437 });
438
439 modelBuilder.Entity("Tgstation.Server.Host.Models.OAuthConnection", b =>
440 {
441 b.Property<long>("Id")
442 .ValueGeneratedOnAdd()
443 .HasColumnType("INTEGER");
444
445 b.Property<string>("ExternalUserId")
446 .IsRequired()
447 .HasMaxLength(100)
448 .HasColumnType("TEXT");
449
450 b.Property<int>("Provider")
451 .HasColumnType("INTEGER");
452
453 b.Property<long>("UserId")
454 .HasColumnType("INTEGER");
455
456 b.HasKey("Id");
457
458 b.HasIndex("UserId");
459
460 b.HasIndex("Provider", "ExternalUserId")
461 .IsUnique();
462
463 b.ToTable("OAuthConnections");
464 });
465
466 modelBuilder.Entity("Tgstation.Server.Host.Models.OidcConnection", b =>
467 {
468 b.Property<long>("Id")
469 .ValueGeneratedOnAdd()
470 .HasColumnType("INTEGER");
471
472 b.Property<string>("ExternalUserId")
473 .IsRequired()
474 .HasMaxLength(100)
475 .HasColumnType("TEXT");
476
477 b.Property<string>("SchemeKey")
478 .IsRequired()
479 .HasMaxLength(100)
480 .HasColumnType("TEXT");
481
482 b.Property<long>("UserId")
483 .HasColumnType("INTEGER");
484
485 b.HasKey("Id");
486
487 b.HasIndex("UserId");
488
489 b.HasIndex("SchemeKey", "ExternalUserId")
490 .IsUnique();
491
492 b.ToTable("OidcConnections");
493 });
494
495 modelBuilder.Entity("Tgstation.Server.Host.Models.PermissionSet", b =>
496 {
497 b.Property<long?>("Id")
498 .ValueGeneratedOnAdd()
499 .HasColumnType("INTEGER");
500
501 b.Property<ulong>("AdministrationRights")
502 .HasColumnType("INTEGER");
503
504 b.Property<long?>("GroupId")
505 .HasColumnType("INTEGER");
506
507 b.Property<ulong>("InstanceManagerRights")
508 .HasColumnType("INTEGER");
509
510 b.Property<long?>("UserId")
511 .HasColumnType("INTEGER");
512
513 b.HasKey("Id");
514
515 b.HasIndex("GroupId")
516 .IsUnique();
517
518 b.HasIndex("UserId")
519 .IsUnique();
520
521 b.ToTable("PermissionSets");
522 });
523
524 modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
525 {
526 b.Property<long?>("Id")
527 .ValueGeneratedOnAdd()
528 .HasColumnType("INTEGER");
529
530 b.Property<string>("AccessIdentifier")
531 .IsRequired()
532 .HasColumnType("TEXT");
533
534 b.Property<long>("CompileJobId")
535 .HasColumnType("INTEGER");
536
537 b.Property<long?>("InitialCompileJobId")
538 .HasColumnType("INTEGER");
539
540 b.Property<int>("LaunchSecurityLevel")
541 .HasColumnType("INTEGER");
542
543 b.Property<int>("LaunchVisibility")
544 .HasColumnType("INTEGER");
545
546 b.Property<ushort>("Port")
547 .HasColumnType("INTEGER");
548
549 b.Property<int>("ProcessId")
550 .HasColumnType("INTEGER");
551
552 b.Property<int>("RebootState")
553 .HasColumnType("INTEGER");
554
555 b.Property<ushort?>("TopicPort")
556 .HasColumnType("INTEGER");
557
558 b.HasKey("Id");
559
560 b.HasIndex("CompileJobId");
561
562 b.HasIndex("InitialCompileJobId");
563
564 b.ToTable("ReattachInformations");
565 });
566
567 modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
568 {
569 b.Property<long>("Id")
570 .ValueGeneratedOnAdd()
571 .HasColumnType("INTEGER");
572
573 b.Property<string>("AccessToken")
574 .HasMaxLength(10000)
575 .HasColumnType("TEXT");
576
577 b.Property<string>("AccessUser")
578 .HasMaxLength(10000)
579 .HasColumnType("TEXT");
580
581 b.Property<bool?>("AutoUpdatesKeepTestMerges")
582 .IsRequired()
583 .HasColumnType("INTEGER");
584
585 b.Property<bool?>("AutoUpdatesSynchronize")
586 .IsRequired()
587 .HasColumnType("INTEGER");
588
589 b.Property<string>("CommitterEmail")
590 .IsRequired()
591 .HasMaxLength(10000)
592 .HasColumnType("TEXT");
593
594 b.Property<string>("CommitterName")
595 .IsRequired()
596 .HasMaxLength(10000)
597 .HasColumnType("TEXT");
598
599 b.Property<bool?>("CreateGitHubDeployments")
600 .IsRequired()
601 .HasColumnType("INTEGER");
602
603 b.Property<long>("InstanceId")
604 .HasColumnType("INTEGER");
605
606 b.Property<bool?>("PostTestMergeComment")
607 .IsRequired()
608 .HasColumnType("INTEGER");
609
610 b.Property<bool?>("PushTestMergeCommits")
611 .IsRequired()
612 .HasColumnType("INTEGER");
613
614 b.Property<bool?>("ShowTestMergeCommitters")
615 .IsRequired()
616 .HasColumnType("INTEGER");
617
618 b.Property<bool?>("UpdateSubmodules")
619 .IsRequired()
620 .HasColumnType("INTEGER");
621
622 b.HasKey("Id");
623
624 b.HasIndex("InstanceId")
625 .IsUnique();
626
627 b.ToTable("RepositorySettings");
628 });
629
630 modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
631 {
632 b.Property<long>("Id")
633 .ValueGeneratedOnAdd()
634 .HasColumnType("INTEGER");
635
636 b.Property<long>("RevisionInformationId")
637 .HasColumnType("INTEGER");
638
639 b.Property<long>("TestMergeId")
640 .HasColumnType("INTEGER");
641
642 b.HasKey("Id");
643
644 b.HasIndex("RevisionInformationId");
645
646 b.HasIndex("TestMergeId");
647
648 b.ToTable("RevInfoTestMerges");
649 });
650
651 modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
652 {
653 b.Property<long>("Id")
654 .ValueGeneratedOnAdd()
655 .HasColumnType("INTEGER");
656
657 b.Property<string>("CommitSha")
658 .IsRequired()
659 .HasMaxLength(40)
660 .HasColumnType("TEXT");
661
662 b.Property<long>("InstanceId")
663 .HasColumnType("INTEGER");
664
665 b.Property<string>("OriginCommitSha")
666 .IsRequired()
667 .HasMaxLength(40)
668 .HasColumnType("TEXT");
669
670 b.Property<DateTimeOffset>("Timestamp")
671 .HasColumnType("TEXT");
672
673 b.HasKey("Id");
674
675 b.HasIndex("InstanceId", "CommitSha")
676 .IsUnique();
677
678 b.ToTable("RevisionInformations");
679 });
680
681 modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
682 {
683 b.Property<long>("Id")
684 .ValueGeneratedOnAdd()
685 .HasColumnType("INTEGER");
686
687 b.Property<string>("Author")
688 .IsRequired()
689 .HasColumnType("TEXT");
690
691 b.Property<string>("BodyAtMerge")
692 .IsRequired()
693 .HasColumnType("TEXT");
694
695 b.Property<string>("Comment")
696 .HasMaxLength(10000)
697 .HasColumnType("TEXT");
698
699 b.Property<DateTimeOffset>("MergedAt")
700 .HasColumnType("TEXT");
701
702 b.Property<long>("MergedById")
703 .HasColumnType("INTEGER");
704
705 b.Property<int>("Number")
706 .HasColumnType("INTEGER");
707
708 b.Property<long?>("PrimaryRevisionInformationId")
709 .IsRequired()
710 .HasColumnType("INTEGER");
711
712 b.Property<string>("TargetCommitSha")
713 .IsRequired()
714 .HasMaxLength(40)
715 .HasColumnType("TEXT");
716
717 b.Property<string>("TitleAtMerge")
718 .IsRequired()
719 .HasColumnType("TEXT");
720
721 b.Property<string>("Url")
722 .IsRequired()
723 .HasColumnType("TEXT");
724
725 b.HasKey("Id");
726
727 b.HasIndex("MergedById");
728
729 b.HasIndex("PrimaryRevisionInformationId")
730 .IsUnique();
731
732 b.ToTable("TestMerges");
733 });
734
735 modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
736 {
737 b.Property<long?>("Id")
738 .ValueGeneratedOnAdd()
739 .HasColumnType("INTEGER");
740
741 b.Property<string>("CanonicalName")
742 .IsRequired()
743 .HasMaxLength(100)
744 .HasColumnType("TEXT");
745
746 b.Property<DateTimeOffset?>("CreatedAt")
747 .IsRequired()
748 .HasColumnType("TEXT");
749
750 b.Property<long?>("CreatedById")
751 .HasColumnType("INTEGER");
752
753 b.Property<bool?>("Enabled")
754 .IsRequired()
755 .HasColumnType("INTEGER");
756
757 b.Property<long?>("GroupId")
758 .HasColumnType("INTEGER");
759
760 b.Property<DateTimeOffset?>("LastPasswordUpdate")
761 .HasColumnType("TEXT");
762
763 b.Property<string>("Name")
764 .IsRequired()
765 .HasMaxLength(100)
766 .HasColumnType("TEXT");
767
768 b.Property<string>("PasswordHash")
769 .HasColumnType("TEXT");
770
771 b.Property<string>("SystemIdentifier")
772 .HasMaxLength(100)
773 .HasColumnType("TEXT");
774
775 b.HasKey("Id");
776
777 b.HasIndex("CanonicalName")
778 .IsUnique();
779
780 b.HasIndex("CreatedById");
781
782 b.HasIndex("GroupId");
783
784 b.HasIndex("SystemIdentifier")
785 .IsUnique();
786
787 b.ToTable("Users");
788 });
789
790 modelBuilder.Entity("Tgstation.Server.Host.Models.UserGroup", b =>
791 {
792 b.Property<long?>("Id")
793 .ValueGeneratedOnAdd()
794 .HasColumnType("INTEGER");
795
796 b.Property<string>("Name")
797 .IsRequired()
798 .HasMaxLength(100)
799 .HasColumnType("TEXT");
800
801 b.HasKey("Id");
802
803 b.HasIndex("Name")
804 .IsUnique();
805
806 b.ToTable("Groups");
807 });
808
809 modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
810 {
811 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
812 .WithMany("ChatSettings")
813 .HasForeignKey("InstanceId")
814 .OnDelete(DeleteBehavior.Cascade)
815 .IsRequired();
816
817 b.Navigation("Instance");
818 });
819
820 modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
821 {
822 b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
823 .WithMany("Channels")
824 .HasForeignKey("ChatSettingsId")
825 .OnDelete(DeleteBehavior.Cascade)
826 .IsRequired();
827
828 b.Navigation("ChatSettings");
829 });
830
831 modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
832 {
833 b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
834 .WithOne()
835 .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
836 .OnDelete(DeleteBehavior.Cascade)
837 .IsRequired();
838
839 b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
840 .WithMany("CompileJobs")
841 .HasForeignKey("RevisionInformationId")
842 .OnDelete(DeleteBehavior.ClientNoAction)
843 .IsRequired();
844
845 b.Navigation("Job");
846
847 b.Navigation("RevisionInformation");
848 });
849
850 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
851 {
852 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
853 .WithOne("DreamDaemonSettings")
854 .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
855 .OnDelete(DeleteBehavior.Cascade)
856 .IsRequired();
857
858 b.Navigation("Instance");
859 });
860
861 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
862 {
863 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
864 .WithOne("DreamMakerSettings")
865 .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
866 .OnDelete(DeleteBehavior.Cascade)
867 .IsRequired();
868
869 b.Navigation("Instance");
870 });
871
872 modelBuilder.Entity("Tgstation.Server.Host.Models.InstancePermissionSet", b =>
873 {
874 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
875 .WithMany("InstancePermissionSets")
876 .HasForeignKey("InstanceId")
877 .OnDelete(DeleteBehavior.Cascade)
878 .IsRequired();
879
880 b.HasOne("Tgstation.Server.Host.Models.PermissionSet", "PermissionSet")
881 .WithMany("InstancePermissionSets")
882 .HasForeignKey("PermissionSetId")
883 .OnDelete(DeleteBehavior.Cascade)
884 .IsRequired();
885
886 b.Navigation("Instance");
887
888 b.Navigation("PermissionSet");
889 });
890
891 modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
892 {
893 b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
894 .WithMany()
895 .HasForeignKey("CancelledById");
896
897 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
898 .WithMany("Jobs")
899 .HasForeignKey("InstanceId")
900 .OnDelete(DeleteBehavior.Cascade)
901 .IsRequired();
902
903 b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
904 .WithMany()
905 .HasForeignKey("StartedById")
906 .OnDelete(DeleteBehavior.Cascade)
907 .IsRequired();
908
909 b.Navigation("CancelledBy");
910
911 b.Navigation("Instance");
912
913 b.Navigation("StartedBy");
914 });
915
916 modelBuilder.Entity("Tgstation.Server.Host.Models.OAuthConnection", b =>
917 {
918 b.HasOne("Tgstation.Server.Host.Models.User", "User")
919 .WithMany("OAuthConnections")
920 .HasForeignKey("UserId")
921 .OnDelete(DeleteBehavior.Cascade)
922 .IsRequired();
923
924 b.Navigation("User");
925 });
926
927 modelBuilder.Entity("Tgstation.Server.Host.Models.OidcConnection", b =>
928 {
929 b.HasOne("Tgstation.Server.Host.Models.User", "User")
930 .WithMany("OidcConnections")
931 .HasForeignKey("UserId")
932 .OnDelete(DeleteBehavior.Cascade)
933 .IsRequired();
934
935 b.Navigation("User");
936 });
937
938 modelBuilder.Entity("Tgstation.Server.Host.Models.PermissionSet", b =>
939 {
940 b.HasOne("Tgstation.Server.Host.Models.UserGroup", "Group")
941 .WithOne("PermissionSet")
942 .HasForeignKey("Tgstation.Server.Host.Models.PermissionSet", "GroupId")
943 .OnDelete(DeleteBehavior.Cascade);
944
945 b.HasOne("Tgstation.Server.Host.Models.User", "User")
946 .WithOne("PermissionSet")
947 .HasForeignKey("Tgstation.Server.Host.Models.PermissionSet", "UserId")
948 .OnDelete(DeleteBehavior.Cascade);
949
950 b.Navigation("Group");
951
952 b.Navigation("User");
953 });
954
955 modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
956 {
957 b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
958 .WithMany()
959 .HasForeignKey("CompileJobId")
960 .OnDelete(DeleteBehavior.Cascade)
961 .IsRequired();
962
963 b.HasOne("Tgstation.Server.Host.Models.CompileJob", "InitialCompileJob")
964 .WithMany()
965 .HasForeignKey("InitialCompileJobId");
966
967 b.Navigation("CompileJob");
968
969 b.Navigation("InitialCompileJob");
970 });
971
972 modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
973 {
974 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
975 .WithOne("RepositorySettings")
976 .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
977 .OnDelete(DeleteBehavior.Cascade)
978 .IsRequired();
979
980 b.Navigation("Instance");
981 });
982
983 modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
984 {
985 b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
986 .WithMany("ActiveTestMerges")
987 .HasForeignKey("RevisionInformationId")
988 .OnDelete(DeleteBehavior.Cascade)
989 .IsRequired();
990
991 b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
992 .WithMany("RevisonInformations")
993 .HasForeignKey("TestMergeId")
994 .OnDelete(DeleteBehavior.ClientNoAction)
995 .IsRequired();
996
997 b.Navigation("RevisionInformation");
998
999 b.Navigation("TestMerge");
1000 });
1001
1002 modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
1003 {
1004 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
1005 .WithMany("RevisionInformations")
1006 .HasForeignKey("InstanceId")
1007 .OnDelete(DeleteBehavior.Cascade)
1008 .IsRequired();
1009
1010 b.Navigation("Instance");
1011 });
1012
1013 modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
1014 {
1015 b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
1016 .WithMany("TestMerges")
1017 .HasForeignKey("MergedById")
1018 .OnDelete(DeleteBehavior.Restrict)
1019 .IsRequired();
1020
1021 b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
1022 .WithOne("PrimaryTestMerge")
1023 .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
1024 .OnDelete(DeleteBehavior.Cascade)
1025 .IsRequired();
1026
1027 b.Navigation("MergedBy");
1028
1029 b.Navigation("PrimaryRevisionInformation");
1030 });
1031
1032 modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
1033 {
1034 b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
1035 .WithMany("CreatedUsers")
1036 .HasForeignKey("CreatedById");
1037
1038 b.HasOne("Tgstation.Server.Host.Models.UserGroup", "Group")
1039 .WithMany("Users")
1040 .HasForeignKey("GroupId");
1041
1042 b.Navigation("CreatedBy");
1043
1044 b.Navigation("Group");
1045 });
1046
1047 modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
1048 {
1049 b.Navigation("Channels");
1050 });
1051
1052 modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
1053 {
1054 b.Navigation("ChatSettings");
1055
1056 b.Navigation("DreamDaemonSettings");
1057
1058 b.Navigation("DreamMakerSettings");
1059
1060 b.Navigation("InstancePermissionSets");
1061
1062 b.Navigation("Jobs");
1063
1064 b.Navigation("RepositorySettings");
1065
1066 b.Navigation("RevisionInformations");
1067 });
1068
1069 modelBuilder.Entity("Tgstation.Server.Host.Models.PermissionSet", b =>
1070 {
1071 b.Navigation("InstancePermissionSets");
1072 });
1073
1074 modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
1075 {
1076 b.Navigation("ActiveTestMerges");
1077
1078 b.Navigation("CompileJobs");
1079
1080 b.Navigation("PrimaryTestMerge");
1081 });
1082
1083 modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
1084 {
1085 b.Navigation("RevisonInformations");
1086 });
1087
1088 modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
1089 {
1090 b.Navigation("CreatedUsers");
1091
1092 b.Navigation("OAuthConnections");
1093
1094 b.Navigation("OidcConnections");
1095
1096 b.Navigation("PermissionSet");
1097
1098 b.Navigation("TestMerges");
1099 });
1100
1101 modelBuilder.Entity("Tgstation.Server.Host.Models.UserGroup", b =>
1102 {
1103 b.Navigation("PermissionSet")
1104 .IsRequired();
1105
1106 b.Navigation("Users");
1107 });
1108#pragma warning restore 612, 618
1109 }
1110 }
1111}