tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
20201106082741_SLAddAdditionalDDParameters.Designer.cs
Go to the documentation of this file.
1// <auto-generated />
2using System;
3using Microsoft.EntityFrameworkCore;
4using Microsoft.EntityFrameworkCore.Infrastructure;
5using Microsoft.EntityFrameworkCore.Migrations;
6
8{
9 [DbContext(typeof(SqliteDatabaseContext))]
10 [Migration("20201106082741_SLAddAdditionalDDParameters")]
11 partial class SLAddAdditionalDDParameters
12 {
14 protected override void BuildTargetModel(ModelBuilder modelBuilder)
15 {
16#pragma warning disable 612, 618
17 modelBuilder
18 .HasAnnotation("ProductVersion", "3.1.7");
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 .HasColumnType("TEXT")
33 .HasMaxLength(10000);
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 .HasColumnType("TEXT")
44 .HasMaxLength(100);
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 .HasColumnType("TEXT")
75 .HasMaxLength(100);
76
77 b.Property<bool?>("IsAdminChannel")
78 .IsRequired()
79 .HasColumnType("INTEGER");
80
81 b.Property<bool?>("IsUpdatesChannel")
82 .IsRequired()
83 .HasColumnType("INTEGER");
84
85 b.Property<bool?>("IsWatchdogChannel")
86 .IsRequired()
87 .HasColumnType("INTEGER");
88
89 b.Property<string>("Tag")
90 .HasColumnType("TEXT")
91 .HasMaxLength(10000);
92
93 b.HasKey("Id");
94
95 b.HasIndex("ChatSettingsId", "DiscordChannelId")
96 .IsUnique();
97
98 b.HasIndex("ChatSettingsId", "IrcChannel")
99 .IsUnique();
100
101 b.ToTable("ChatChannels");
102 });
103
104 modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
105 {
106 b.Property<long>("Id")
107 .ValueGeneratedOnAdd()
108 .HasColumnType("INTEGER");
109
110 b.Property<string>("ByondVersion")
111 .IsRequired()
112 .HasColumnType("TEXT");
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<int?>("GitHubDeploymentId")
132 .HasColumnType("INTEGER");
133
134 b.Property<long?>("GitHubRepoId")
135 .HasColumnType("INTEGER");
136
137 b.Property<long>("JobId")
138 .HasColumnType("INTEGER");
139
140 b.Property<int?>("MinimumSecurityLevel")
141 .HasColumnType("INTEGER");
142
143 b.Property<string>("Output")
144 .IsRequired()
145 .HasColumnType("TEXT");
146
147 b.Property<long>("RevisionInformationId")
148 .HasColumnType("INTEGER");
149
150 b.HasKey("Id");
151
152 b.HasIndex("DirectoryName");
153
154 b.HasIndex("JobId")
155 .IsUnique();
156
157 b.HasIndex("RevisionInformationId");
158
159 b.ToTable("CompileJobs");
160 });
161
162 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
163 {
164 b.Property<long>("Id")
165 .ValueGeneratedOnAdd()
166 .HasColumnType("INTEGER");
167
168 b.Property<string>("AdditionalParameters")
169 .IsRequired()
170 .HasColumnType("TEXT")
171 .HasMaxLength(10000);
172
173 b.Property<bool?>("AllowWebClient")
174 .IsRequired()
175 .HasColumnType("INTEGER");
176
177 b.Property<bool?>("AutoStart")
178 .IsRequired()
179 .HasColumnType("INTEGER");
180
181 b.Property<uint?>("HeartbeatSeconds")
182 .IsRequired()
183 .HasColumnType("INTEGER");
184
185 b.Property<long>("InstanceId")
186 .HasColumnType("INTEGER");
187
188 b.Property<ushort?>("Port")
189 .IsRequired()
190 .HasColumnType("INTEGER");
191
192 b.Property<int>("SecurityLevel")
193 .HasColumnType("INTEGER");
194
195 b.Property<uint?>("StartupTimeout")
196 .IsRequired()
197 .HasColumnType("INTEGER");
198
199 b.Property<uint?>("TopicRequestTimeout")
200 .IsRequired()
201 .HasColumnType("INTEGER");
202
203 b.HasKey("Id");
204
205 b.HasIndex("InstanceId")
206 .IsUnique();
207
208 b.ToTable("DreamDaemonSettings");
209 });
210
211 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
212 {
213 b.Property<long>("Id")
214 .ValueGeneratedOnAdd()
215 .HasColumnType("INTEGER");
216
217 b.Property<ushort?>("ApiValidationPort")
218 .IsRequired()
219 .HasColumnType("INTEGER");
220
221 b.Property<int>("ApiValidationSecurityLevel")
222 .HasColumnType("INTEGER");
223
224 b.Property<long>("InstanceId")
225 .HasColumnType("INTEGER");
226
227 b.Property<string>("ProjectName")
228 .HasColumnType("TEXT")
229 .HasMaxLength(10000);
230
231 b.Property<bool?>("RequireDMApiValidation")
232 .IsRequired()
233 .HasColumnType("INTEGER");
234
235 b.HasKey("Id");
236
237 b.HasIndex("InstanceId")
238 .IsUnique();
239
240 b.ToTable("DreamMakerSettings");
241 });
242
243 modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
244 {
245 b.Property<long>("Id")
246 .ValueGeneratedOnAdd()
247 .HasColumnType("INTEGER");
248
249 b.Property<uint?>("AutoUpdateInterval")
250 .IsRequired()
251 .HasColumnType("INTEGER");
252
253 b.Property<ushort?>("ChatBotLimit")
254 .IsRequired()
255 .HasColumnType("INTEGER");
256
257 b.Property<int>("ConfigurationType")
258 .HasColumnType("INTEGER");
259
260 b.Property<string>("Name")
261 .IsRequired()
262 .HasColumnType("TEXT")
263 .HasMaxLength(10000);
264
265 b.Property<bool?>("Online")
266 .IsRequired()
267 .HasColumnType("INTEGER");
268
269 b.Property<string>("Path")
270 .IsRequired()
271 .HasColumnType("TEXT");
272
273 b.HasKey("Id");
274
275 b.HasIndex("Path")
276 .IsUnique();
277
278 b.ToTable("Instances");
279 });
280
281 modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
282 {
283 b.Property<long>("Id")
284 .ValueGeneratedOnAdd()
285 .HasColumnType("INTEGER");
286
287 b.Property<ulong>("ByondRights")
288 .HasColumnType("INTEGER");
289
290 b.Property<ulong>("ChatBotRights")
291 .HasColumnType("INTEGER");
292
293 b.Property<ulong>("ConfigurationRights")
294 .HasColumnType("INTEGER");
295
296 b.Property<ulong>("DreamDaemonRights")
297 .HasColumnType("INTEGER");
298
299 b.Property<ulong>("DreamMakerRights")
300 .HasColumnType("INTEGER");
301
302 b.Property<long>("InstanceId")
303 .HasColumnType("INTEGER");
304
305 b.Property<ulong>("InstanceUserRights")
306 .HasColumnType("INTEGER");
307
308 b.Property<ulong>("RepositoryRights")
309 .HasColumnType("INTEGER");
310
311 b.Property<long>("UserId")
312 .HasColumnType("INTEGER");
313
314 b.HasKey("Id");
315
316 b.HasIndex("InstanceId");
317
318 b.HasIndex("UserId", "InstanceId")
319 .IsUnique();
320
321 b.ToTable("InstanceUsers");
322 });
323
324 modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
325 {
326 b.Property<long>("Id")
327 .ValueGeneratedOnAdd()
328 .HasColumnType("INTEGER");
329
330 b.Property<ulong?>("CancelRight")
331 .HasColumnType("INTEGER");
332
333 b.Property<ulong?>("CancelRightsType")
334 .HasColumnType("INTEGER");
335
336 b.Property<bool?>("Cancelled")
337 .IsRequired()
338 .HasColumnType("INTEGER");
339
340 b.Property<long?>("CancelledById")
341 .HasColumnType("INTEGER");
342
343 b.Property<string>("Description")
344 .IsRequired()
345 .HasColumnType("TEXT");
346
347 b.Property<uint?>("ErrorCode")
348 .HasColumnType("INTEGER");
349
350 b.Property<string>("ExceptionDetails")
351 .HasColumnType("TEXT");
352
353 b.Property<long>("InstanceId")
354 .HasColumnType("INTEGER");
355
356 b.Property<DateTimeOffset?>("StartedAt")
357 .IsRequired()
358 .HasColumnType("TEXT");
359
360 b.Property<long>("StartedById")
361 .HasColumnType("INTEGER");
362
363 b.Property<DateTimeOffset?>("StoppedAt")
364 .HasColumnType("TEXT");
365
366 b.HasKey("Id");
367
368 b.HasIndex("CancelledById");
369
370 b.HasIndex("InstanceId");
371
372 b.HasIndex("StartedById");
373
374 b.ToTable("Jobs");
375 });
376
377 modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
378 {
379 b.Property<long>("Id")
380 .ValueGeneratedOnAdd()
381 .HasColumnType("INTEGER");
382
383 b.Property<string>("AccessIdentifier")
384 .IsRequired()
385 .HasColumnType("TEXT");
386
387 b.Property<long>("CompileJobId")
388 .HasColumnType("INTEGER");
389
390 b.Property<int>("LaunchSecurityLevel")
391 .HasColumnType("INTEGER");
392
393 b.Property<ushort>("Port")
394 .HasColumnType("INTEGER");
395
396 b.Property<int>("ProcessId")
397 .HasColumnType("INTEGER");
398
399 b.Property<int>("RebootState")
400 .HasColumnType("INTEGER");
401
402 b.HasKey("Id");
403
404 b.HasIndex("CompileJobId");
405
406 b.ToTable("ReattachInformations");
407 });
408
409 modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
410 {
411 b.Property<long>("Id")
412 .ValueGeneratedOnAdd()
413 .HasColumnType("INTEGER");
414
415 b.Property<string>("AccessToken")
416 .HasColumnType("TEXT")
417 .HasMaxLength(10000);
418
419 b.Property<string>("AccessUser")
420 .HasColumnType("TEXT")
421 .HasMaxLength(10000);
422
423 b.Property<bool?>("AutoUpdatesKeepTestMerges")
424 .IsRequired()
425 .HasColumnType("INTEGER");
426
427 b.Property<bool?>("AutoUpdatesSynchronize")
428 .IsRequired()
429 .HasColumnType("INTEGER");
430
431 b.Property<string>("CommitterEmail")
432 .IsRequired()
433 .HasColumnType("TEXT")
434 .HasMaxLength(10000);
435
436 b.Property<string>("CommitterName")
437 .IsRequired()
438 .HasColumnType("TEXT")
439 .HasMaxLength(10000);
440
441 b.Property<bool?>("CreateGitHubDeployments")
442 .IsRequired()
443 .HasColumnType("INTEGER");
444
445 b.Property<long>("InstanceId")
446 .HasColumnType("INTEGER");
447
448 b.Property<bool?>("PostTestMergeComment")
449 .IsRequired()
450 .HasColumnType("INTEGER");
451
452 b.Property<bool?>("PushTestMergeCommits")
453 .IsRequired()
454 .HasColumnType("INTEGER");
455
456 b.Property<bool?>("ShowTestMergeCommitters")
457 .IsRequired()
458 .HasColumnType("INTEGER");
459
460 b.HasKey("Id");
461
462 b.HasIndex("InstanceId")
463 .IsUnique();
464
465 b.ToTable("RepositorySettings");
466 });
467
468 modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
469 {
470 b.Property<long>("Id")
471 .ValueGeneratedOnAdd()
472 .HasColumnType("INTEGER");
473
474 b.Property<long>("RevisionInformationId")
475 .HasColumnType("INTEGER");
476
477 b.Property<long>("TestMergeId")
478 .HasColumnType("INTEGER");
479
480 b.HasKey("Id");
481
482 b.HasIndex("RevisionInformationId");
483
484 b.HasIndex("TestMergeId");
485
486 b.ToTable("RevInfoTestMerges");
487 });
488
489 modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
490 {
491 b.Property<long>("Id")
492 .ValueGeneratedOnAdd()
493 .HasColumnType("INTEGER");
494
495 b.Property<string>("CommitSha")
496 .IsRequired()
497 .HasColumnType("TEXT")
498 .HasMaxLength(40);
499
500 b.Property<long>("InstanceId")
501 .HasColumnType("INTEGER");
502
503 b.Property<string>("OriginCommitSha")
504 .IsRequired()
505 .HasColumnType("TEXT")
506 .HasMaxLength(40);
507
508 b.HasKey("Id");
509
510 b.HasIndex("InstanceId", "CommitSha")
511 .IsUnique();
512
513 b.ToTable("RevisionInformations");
514 });
515
516 modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
517 {
518 b.Property<long>("Id")
519 .ValueGeneratedOnAdd()
520 .HasColumnType("INTEGER");
521
522 b.Property<string>("Author")
523 .IsRequired()
524 .HasColumnType("TEXT");
525
526 b.Property<string>("BodyAtMerge")
527 .IsRequired()
528 .HasColumnType("TEXT");
529
530 b.Property<string>("Comment")
531 .HasColumnType("TEXT")
532 .HasMaxLength(10000);
533
534 b.Property<DateTimeOffset>("MergedAt")
535 .HasColumnType("TEXT");
536
537 b.Property<long>("MergedById")
538 .HasColumnType("INTEGER");
539
540 b.Property<int>("Number")
541 .HasColumnType("INTEGER");
542
543 b.Property<long?>("PrimaryRevisionInformationId")
544 .IsRequired()
545 .HasColumnType("INTEGER");
546
547 b.Property<string>("PullRequestRevision")
548 .IsRequired()
549 .HasColumnType("TEXT")
550 .HasMaxLength(40);
551
552 b.Property<string>("TitleAtMerge")
553 .IsRequired()
554 .HasColumnType("TEXT");
555
556 b.Property<string>("Url")
557 .IsRequired()
558 .HasColumnType("TEXT");
559
560 b.HasKey("Id");
561
562 b.HasIndex("MergedById");
563
564 b.HasIndex("PrimaryRevisionInformationId")
565 .IsUnique();
566
567 b.ToTable("TestMerges");
568 });
569
570 modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
571 {
572 b.Property<long?>("Id")
573 .ValueGeneratedOnAdd()
574 .HasColumnType("INTEGER");
575
576 b.Property<ulong>("AdministrationRights")
577 .HasColumnType("INTEGER");
578
579 b.Property<string>("CanonicalName")
580 .IsRequired()
581 .HasColumnType("TEXT");
582
583 b.Property<DateTimeOffset?>("CreatedAt")
584 .IsRequired()
585 .HasColumnType("TEXT");
586
587 b.Property<long?>("CreatedById")
588 .HasColumnType("INTEGER");
589
590 b.Property<bool?>("Enabled")
591 .IsRequired()
592 .HasColumnType("INTEGER");
593
594 b.Property<ulong>("InstanceManagerRights")
595 .HasColumnType("INTEGER");
596
597 b.Property<DateTimeOffset?>("LastPasswordUpdate")
598 .HasColumnType("TEXT");
599
600 b.Property<string>("Name")
601 .IsRequired()
602 .HasColumnType("TEXT")
603 .HasMaxLength(10000);
604
605 b.Property<string>("PasswordHash")
606 .HasColumnType("TEXT");
607
608 b.Property<string>("SystemIdentifier")
609 .HasColumnType("TEXT");
610
611 b.HasKey("Id");
612
613 b.HasIndex("CanonicalName")
614 .IsUnique();
615
616 b.HasIndex("CreatedById");
617
618 b.HasIndex("SystemIdentifier")
619 .IsUnique();
620
621 b.ToTable("Users");
622 });
623
624 modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
625 {
626 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
627 .WithMany("ChatSettings")
628 .HasForeignKey("InstanceId")
629 .OnDelete(DeleteBehavior.Cascade)
630 .IsRequired();
631 });
632
633 modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
634 {
635 b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
636 .WithMany("Channels")
637 .HasForeignKey("ChatSettingsId")
638 .OnDelete(DeleteBehavior.Cascade)
639 .IsRequired();
640 });
641
642 modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
643 {
644 b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
645 .WithOne()
646 .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
647 .OnDelete(DeleteBehavior.Cascade)
648 .IsRequired();
649
650 b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
651 .WithMany("CompileJobs")
652 .HasForeignKey("RevisionInformationId")
653 .OnDelete(DeleteBehavior.ClientNoAction)
654 .IsRequired();
655 });
656
657 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
658 {
659 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
660 .WithOne("DreamDaemonSettings")
661 .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
662 .OnDelete(DeleteBehavior.Cascade)
663 .IsRequired();
664 });
665
666 modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
667 {
668 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
669 .WithOne("DreamMakerSettings")
670 .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
671 .OnDelete(DeleteBehavior.Cascade)
672 .IsRequired();
673 });
674
675 modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
676 {
677 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
678 .WithMany("InstanceUsers")
679 .HasForeignKey("InstanceId")
680 .OnDelete(DeleteBehavior.Cascade)
681 .IsRequired();
682
683 b.HasOne("Tgstation.Server.Host.Models.User", null)
684 .WithMany("InstanceUsers")
685 .HasForeignKey("UserId")
686 .OnDelete(DeleteBehavior.Cascade)
687 .IsRequired();
688 });
689
690 modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
691 {
692 b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
693 .WithMany()
694 .HasForeignKey("CancelledById");
695
696 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
697 .WithMany("Jobs")
698 .HasForeignKey("InstanceId")
699 .OnDelete(DeleteBehavior.Cascade)
700 .IsRequired();
701
702 b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
703 .WithMany()
704 .HasForeignKey("StartedById")
705 .OnDelete(DeleteBehavior.Cascade)
706 .IsRequired();
707 });
708
709 modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
710 {
711 b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
712 .WithMany()
713 .HasForeignKey("CompileJobId")
714 .OnDelete(DeleteBehavior.Cascade)
715 .IsRequired();
716 });
717
718 modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
719 {
720 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
721 .WithOne("RepositorySettings")
722 .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
723 .OnDelete(DeleteBehavior.Cascade)
724 .IsRequired();
725 });
726
727 modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
728 {
729 b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
730 .WithMany("ActiveTestMerges")
731 .HasForeignKey("RevisionInformationId")
732 .OnDelete(DeleteBehavior.Cascade)
733 .IsRequired();
734
735 b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
736 .WithMany("RevisonInformations")
737 .HasForeignKey("TestMergeId")
738 .OnDelete(DeleteBehavior.ClientNoAction)
739 .IsRequired();
740 });
741
742 modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
743 {
744 b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
745 .WithMany("RevisionInformations")
746 .HasForeignKey("InstanceId")
747 .OnDelete(DeleteBehavior.Cascade)
748 .IsRequired();
749 });
750
751 modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
752 {
753 b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
754 .WithMany("TestMerges")
755 .HasForeignKey("MergedById")
756 .OnDelete(DeleteBehavior.Restrict)
757 .IsRequired();
758
759 b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
760 .WithOne("PrimaryTestMerge")
761 .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
762 .OnDelete(DeleteBehavior.Cascade)
763 .IsRequired();
764 });
765
766 modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
767 {
768 b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
769 .WithMany("CreatedUsers")
770 .HasForeignKey("CreatedById");
771 });
772#pragma warning restore 612, 618
773 }
774 }
775}