This commit is contained in:
2025-08-08 12:31:51 +03:00
parent 3301e17f22
commit 4796beac49
29 changed files with 2369 additions and 77 deletions

View File

@@ -0,0 +1,44 @@
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");
}
}
}