| 1234567891011121314151617181920212223242526272829303132 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace Gateway.POS.Migrations
- {
- public partial class setMembershipSubAccountIdentityIdentitytorequired : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.Sql("DELETE from MembershipSubAccountIdentities where Identity is Null");
- migrationBuilder.AlterColumn<string>(
- name: "Identity",
- table: "MembershipSubAccountIdentities",
- type: "TEXT",
- nullable: false,
- defaultValue: "",
- oldClrType: typeof(string),
- oldType: "TEXT",
- oldNullable: true);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "Identity",
- table: "MembershipSubAccountIdentities",
- type: "TEXT",
- nullable: true,
- oldClrType: typeof(string),
- oldType: "TEXT");
- }
- }
- }
|