1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
// <auto-generated />
using System;
using CoreWiki.Models;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
#nullable disable
namespace CoreWiki.Migrations
{
[DbContext(typeof(ApplicationDbContext))]
[Migration("20231225202905_ViewCount")]
partial class ViewCount
{
/// <inheritdoc />
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "7.0.2");
modelBuilder.Entity("CoreWiki.Models.Article", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<string>("Content")
.IsRequired()
.HasColumnType("TEXT");
b.Property<DateTime>("PublishedDateTime")
.HasColumnType("TEXT")
.HasColumnName("Published");
b.Property<string>("Slug")
.IsRequired()
.HasColumnType("TEXT");
b.Property<string>("Topic")
.IsRequired()
.HasMaxLength(100)
.HasColumnType("TEXT");
b.Property<int>("ViewCount")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.ToTable("Articles");
b.HasData(
new
{
Id = 1,
Content = "Welcome to your new CoreWiki installation",
PublishedDateTime = new DateTime(2023, 12, 25, 20, 29, 5, 642, DateTimeKind.Utc).AddTicks(7240),
Slug = "home-page",
Topic = "Home Page",
ViewCount = 0
});
});
modelBuilder.Entity("CoreWiki.Models.Comment", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<int>("ArticleId")
.HasColumnType("INTEGER");
b.Property<string>("Content")
.IsRequired()
.HasColumnType("TEXT");
b.Property<string>("DisplayName")
.IsRequired()
.HasColumnType("TEXT");
b.Property<string>("EMail")
.IsRequired()
.HasColumnType("TEXT");
b.Property<DateTime>("SubmittedDateTime")
.HasColumnType("TEXT")
.HasColumnName("Submitted");
b.HasKey("Id");
b.HasIndex("ArticleId");
b.ToTable("Comment");
});
modelBuilder.Entity("CoreWiki.Models.Comment", b =>
{
b.HasOne("CoreWiki.Models.Article", "Article")
.WithMany("Comments")
.HasForeignKey("ArticleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Article");
});
modelBuilder.Entity("CoreWiki.Models.Article", b =>
{
b.Navigation("Comments");
});
#pragma warning restore 612, 618
}
}
}
|