Files
DugunSalonu/Migrations/20250807212423_mg3.cs
2025-08-08 12:31:51 +03:00

45 lines
1.2 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DugunSalonu.Migrations
{
/// <inheritdoc />
public partial class mg3 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropPrimaryKey(
name: "PK_Kullanici",
table: "Kullanici");
migrationBuilder.RenameTable(
name: "Kullanici",
newName: "kullanici");
migrationBuilder.AddPrimaryKey(
name: "PK_kullanici",
table: "kullanici",
column: "Id");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropPrimaryKey(
name: "PK_kullanici",
table: "kullanici");
migrationBuilder.RenameTable(
name: "kullanici",
newName: "Kullanici");
migrationBuilder.AddPrimaryKey(
name: "PK_Kullanici",
table: "Kullanici",
column: "Id");
}
}
}