45 lines
1.2 KiB
C#
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");
|
|
}
|
|
}
|
|
}
|