30 lines
858 B
C#
30 lines
858 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace PARR.DAL.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddUnitNameUppercaseCheck : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddCheckConstraint(
|
|
name: "CK_Units_Name_Upper",
|
|
schema: "unit",
|
|
table: "Units",
|
|
sql: "\"Name\" = UPPER(\"Name\") AND \"Name\" IS NOT NULL AND LENGTH(\"Name\")>0");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropCheckConstraint(
|
|
name: "CK_Units_Name_Upper",
|
|
schema: "unit",
|
|
table: "Units");
|
|
}
|
|
}
|
|
}
|