Changeset b62cefc for ChapterX.Infrastructure
- Timestamp:
- 03/19/26 23:26:14 (4 months ago)
- Branches:
- main
- Children:
- acf690c
- Parents:
- e294f7d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Infrastructure/Migrations/ApplicationDbContextModelSnapshot.cs
re294f7d rb62cefc 31 31 NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id")); 32 32 33 b.Property<bool >("Accepted")33 b.Property<bool?>("Accepted") 34 34 .HasColumnType("boolean"); 35 35 … … 59 59 b.HasIndex("StoryId"); 60 60 61 b.ToTable("AISuggestions" );61 b.ToTable("AISuggestions", (string)null); 62 62 }); 63 63 … … 78 78 .IsUnique(); 79 79 80 b.ToTable("Admins" );80 b.ToTable("Admins", (string)null); 81 81 }); 82 82 … … 129 129 b.HasIndex("StoryId"); 130 130 131 b.ToTable("Chapters" );131 b.ToTable("Chapters", (string)null); 132 132 }); 133 133 … … 159 159 b.HasIndex("UserId"); 160 160 161 b.ToTable("Collaborations" );161 b.ToTable("Collaborations", (string)null); 162 162 }); 163 163 … … 192 192 b.HasIndex("UserId"); 193 193 194 b.ToTable("Comments" );194 b.ToTable("Comments", (string)null); 195 195 }); 196 196 … … 209 209 b.HasKey("Id"); 210 210 211 b.ToTable("Genres" );211 b.ToTable("Genres", (string)null); 212 212 }); 213 213 … … 232 232 b.HasIndex("StoryId"); 233 233 234 b.ToTable("HasGenres" );234 b.ToTable("HasGenres", (string)null); 235 235 }); 236 236 … … 263 263 b.HasIndex("UserId"); 264 264 265 b.ToTable("Likes" );265 b.ToTable("Likes", (string)null); 266 266 }); 267 267 … … 302 302 b.HasIndex("StoryId"); 303 303 304 b.ToTable("NeedApprovals" );304 b.ToTable("NeedApprovals", (string)null); 305 305 }); 306 306 … … 329 329 b.HasKey("Id"); 330 330 331 b.ToTable("Notifications" );331 b.ToTable("Notifications", (string)null); 332 332 }); 333 333 … … 360 360 b.HasIndex("UserId"); 361 361 362 b.ToTable("Notifies" );362 b.ToTable("Notifies", (string)null); 363 363 }); 364 364 … … 394 394 b.HasIndex("UserId"); 395 395 396 b.ToTable("ReadingLists" );396 b.ToTable("ReadingLists", (string)null); 397 397 }); 398 398 … … 420 420 b.HasIndex("StoryId"); 421 421 422 b.ToTable("ReadingListItems" );422 b.ToTable("ReadingListItems", (string)null); 423 423 }); 424 424 … … 439 439 .IsUnique(); 440 440 441 b.ToTable("RegularUsers" );441 b.ToTable("RegularUsers", (string)null); 442 442 }); 443 443 … … 484 484 b.HasIndex("WriterId"); 485 485 486 b.ToTable("Stories" );486 b.ToTable("Stories", (string)null); 487 487 }); 488 488 … … 523 523 b.HasKey("Id"); 524 524 525 b.ToTable("Users" );525 b.ToTable("Users", (string)null); 526 526 }); 527 527 … … 546 546 .IsUnique(); 547 547 548 b.ToTable("Writers" );548 b.ToTable("Writers", (string)null); 549 549 }); 550 550
Note:
See TracChangeset
for help on using the changeset viewer.
