12345678910111213141516171819202122 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace Repository.Migrations
- {
- public partial class _202412171 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "WorkDev",
- table: "Informations",
- nullable: true);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "WorkDev",
- table: "Informations");
- }
- }
- }
|