Skip to content

Commit

Permalink
временный фикс спосорки
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgencheg committed Sep 8, 2024
1 parent bb9a4c7 commit 2651f07
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 26 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
ooccolor = table.Column<string>(type: "text", nullable: false),
have_priority_join = table.Column<bool>(type: "boolean", nullable: false),
allowed_markings = table.Column<string>(type: "text", nullable: false),
expire_date = table.Column<DateTime>(type: "text", nullable: false),
//expire_date = table.Column<DateTime>(type: "text", nullable: false),
extra_slots = table.Column<int>(type: "integer", nullable: false)
},
constraints: table =>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1255,9 +1255,9 @@ protected override void BuildModel(ModelBuilder modelBuilder)
.HasColumnType("text")
.HasColumnName("allowed_markings");

b.Property<DateTime>("ExpireDate")
.HasColumnType("text")
.HasColumnName("expire_date");
// b.Property<DateTime>("ExpireDate")
// .HasColumnType("text")
// .HasColumnName("expire_date");

b.Property<int>("ExtraSlots")
.HasColumnType("integer")
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
ooccolor = table.Column<string>(type: "TEXT", nullable: false),
have_priority_join = table.Column<bool>(type: "INTEGER", nullable: false),
allowed_markings = table.Column<string>(type: "TEXT", nullable: false),
expire_date = table.Column<DateTime>(type: "TEXT", nullable: false),
// expire_date = table.Column<DateTime>(type: "TEXT", nullable: false),
extra_slots = table.Column<int>(type: "INTEGER", nullable: false)
},
constraints: table =>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1192,9 +1192,9 @@ protected override void BuildModel(ModelBuilder modelBuilder)
.HasColumnType("TEXT")
.HasColumnName("allowed_markings");

b.Property<DateTime>("ExpireDate")
.HasColumnType("TEXT")
.HasColumnName("expire_date");
// b.Property<DateTime>("ExpireDate")
// .HasColumnType("TEXT")
// .HasColumnName("expire_date");

b.Property<int>("ExtraSlots")
.HasColumnType("INTEGER")
Expand Down

0 comments on commit 2651f07

Please sign in to comment.