12345678910111213141516171819202122232425262728 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace EVCB_OCPP.Domain.Migrations
- {
- /// <inheritdoc />
- public partial class Updatetest : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "Name",
- table: "Machine",
- type: "nvarchar(max)",
- nullable: true);
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "Name",
- table: "Machine");
- }
- }
- }
|