1234567891011121314151617181920212223 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace ProductionLineMonitor.Web.Migrations
- {
- public partial class _202212121617 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "Version",
- table: "Cims",
- type: "TEXT",
- nullable: true);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "Version",
- table: "Cims");
- }
- }
- }
|