миграции и редактирование представлений

This commit is contained in:
ValAnn 2024-05-11 14:02:02 +04:00
parent e90f31fcd3
commit cfa7f19da6
3 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<select class="form-select form-select-lg" id="shop" name="shop" asp-items="@(new SelectList(@ViewBag.Shops,"Id", "ShopName"))"></select>
</div>
<div class="mb-3">
<label class="form-label">Пицца</label>
<label class="form-label">Суши</label>
<select class="form-select form-select-lg" id="sushi" name="sushi" asp-items="@(new SelectList(@ViewBag.Sushis,"Id", "SushiName"))"></select>
</div>
<div class="mb-3">

View File

@ -12,7 +12,7 @@ using SushiBarDatabaseImplement;
namespace SushiBarDatabaseImplement.Migrations
{
[DbContext(typeof(SushiBarDatabase))]
[Migration("20240508053719_InitCreate")]
[Migration("20240508132013_InitCreate")]
partial class InitCreate
{
/// <inheritdoc />