12345678910111213141516171819202122232425262728293031323334 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace ProductionLineMonitor.Web.Migrations
- {
- public partial class _202212121658 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "EAPIP",
- table: "Cims",
- type: "TEXT",
- nullable: true);
- migrationBuilder.AddColumn<int>(
- name: "EAPPort",
- table: "Cims",
- type: "INTEGER",
- nullable: false,
- defaultValue: 0);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "EAPIP",
- table: "Cims");
- migrationBuilder.DropColumn(
- name: "EAPPort",
- table: "Cims");
- }
- }
- }
|