sunpengfei
2 天以前 78b5e0a2e4c48239983e236c48f8c0b897d69f9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using Microsoft.EntityFrameworkCore.Migrations;
 
#nullable disable
 
namespace FlexJobApi.Database.Migrations.Migrations
{
    /// <inheritdoc />
    public partial class CodeUrl0909 : Migration
    {
        /// <inheritdoc />
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.AddColumn<string>(
                name: "ParamValue1",
                table: "CodeUrl",
                type: "nvarchar(max)",
                nullable: true);
 
            migrationBuilder.AddColumn<string>(
                name: "ParamValue2",
                table: "CodeUrl",
                type: "nvarchar(max)",
                nullable: true);
 
            migrationBuilder.AddColumn<string>(
                name: "ParamValue3",
                table: "CodeUrl",
                type: "nvarchar(max)",
                nullable: true);
 
            migrationBuilder.AddColumn<string>(
                name: "ParamValue4",
                table: "CodeUrl",
                type: "nvarchar(max)",
                nullable: true);
 
            migrationBuilder.AddColumn<string>(
                name: "ParamValue5",
                table: "CodeUrl",
                type: "nvarchar(max)",
                nullable: true);
        }
 
        /// <inheritdoc />
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropColumn(
                name: "ParamValue1",
                table: "CodeUrl");
 
            migrationBuilder.DropColumn(
                name: "ParamValue2",
                table: "CodeUrl");
 
            migrationBuilder.DropColumn(
                name: "ParamValue3",
                table: "CodeUrl");
 
            migrationBuilder.DropColumn(
                name: "ParamValue4",
                table: "CodeUrl");
 
            migrationBuilder.DropColumn(
                name: "ParamValue5",
                table: "CodeUrl");
        }
    }
}