using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DugunSalonu.Migrations
{
///
public partial class mg3 : Migration
{
///
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");
}
///
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");
}
}
}