Changeset fc7b4b4 for iknow-api/Migrations
- Timestamp:
- 10/22/25 22:40:03 (11 months ago)
- Branches:
- master
- Children:
- 301af3f
- Parents:
- aed1148
- Location:
- iknow-api/Migrations
- Files:
-
- 1 edited
- 2 moved
-
20251022202014_InitialCreate.Designer.cs (moved) (moved from iknow-api/Migrations/20251021141534_InitialCreate.Designer.cs ) (2 diffs)
-
20251022202014_InitialCreate.cs (moved) (moved from iknow-api/Migrations/20251021141534_InitialCreate.cs ) (1 diff)
-
AppDbContextModelSnapshot.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Migrations/20251022202014_InitialCreate.Designer.cs
raed1148 rfc7b4b4 13 13 { 14 14 [DbContext(typeof(AppDbContext))] 15 [Migration("2025102 1141534_InitialCreate")]15 [Migration("20251022202014_InitialCreate")] 16 16 partial class InitialCreate 17 17 { … … 49 49 .HasColumnType("text"); 50 50 51 b.Property<string>("Password ")51 b.Property<string>("PasswordHash") 52 52 .HasColumnType("text"); 53 53 -
iknow-api/Migrations/20251022202014_InitialCreate.cs
raed1148 rfc7b4b4 23 23 Index = table.Column<string>(type: "text", nullable: true), 24 24 Email = table.Column<string>(type: "text", nullable: true), 25 Password = table.Column<string>(type: "text", nullable: true),25 PasswordHash = table.Column<string>(type: "text", nullable: true), 26 26 Bday = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), 27 27 CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), -
iknow-api/Migrations/AppDbContextModelSnapshot.cs
raed1148 rfc7b4b4 46 46 .HasColumnType("text"); 47 47 48 b.Property<string>("Password ")48 b.Property<string>("PasswordHash") 49 49 .HasColumnType("text"); 50 50
Note:
See TracChangeset
for help on using the changeset viewer.
