sunpengfei
7 天以前 09d39bd7f1bfc72b78e0060c197562610a0ca9f8
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
using System;
using Microsoft.EntityFrameworkCore.Migrations;
 
#nullable disable
 
namespace FlexJobApi.Database.Migrations.Migrations
{
    /// <inheritdoc />
    public partial class UpdateUser0809 : Migration
    {
        /// <inheritdoc />
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropForeignKey(
                name: "FK_UserExpectJob_DictionaryData_PersonalIdentityCode",
                table: "UserExpectJob");
 
            migrationBuilder.DropTable(
                name: "UserResume");
 
            migrationBuilder.RenameColumn(
                name: "PersonalIdentityCode",
                table: "UserExpectJob",
                newName: "ExpectJobCode");
 
            migrationBuilder.RenameIndex(
                name: "IX_UserExpectJob_PersonalIdentityCode",
                table: "UserExpectJob",
                newName: "IX_UserExpectJob_ExpectJobCode");
 
            migrationBuilder.AlterColumn<string>(
                name: "Code",
                table: "UserCredential",
                type: "nvarchar(128)",
                maxLength: 128,
                nullable: true,
                oldClrType: typeof(string),
                oldType: "nvarchar(128)",
                oldMaxLength: 128);
 
            migrationBuilder.AddColumn<string>(
                name: "EducationalBackgroundCode",
                table: "User",
                type: "nvarchar(128)",
                nullable: true);
 
            migrationBuilder.AddColumn<int>(
                name: "FreeTime",
                table: "User",
                type: "int",
                nullable: true);
 
            migrationBuilder.AddColumn<int>(
                name: "Height",
                table: "User",
                type: "int",
                nullable: true);
 
            migrationBuilder.AddColumn<int>(
                name: "JobSeekingStatus",
                table: "User",
                type: "int",
                nullable: true);
 
            migrationBuilder.AddColumn<string>(
                name: "PersonalIdentityCode",
                table: "User",
                type: "nvarchar(128)",
                nullable: true);
 
            migrationBuilder.AddColumn<int>(
                name: "Weight",
                table: "User",
                type: "int",
                nullable: true);
 
            migrationBuilder.AddColumn<string>(
                name: "WorkExperience",
                table: "User",
                type: "nvarchar(max)",
                nullable: true);
 
            migrationBuilder.AddColumn<string>(
                name: "WorkSeniority",
                table: "User",
                type: "nvarchar(max)",
                nullable: true);
 
            migrationBuilder.UpdateData(
                table: "User",
                keyColumn: "Id",
                keyValue: new Guid("11111111-1111-1111-1111-111111111111"),
                columns: new[] { "EducationalBackgroundCode", "FreeTime", "Height", "JobSeekingStatus", "PersonalIdentityCode", "Weight", "WorkExperience", "WorkSeniority" },
                values: new object[] { null, null, null, null, null, null, null, null });
 
            migrationBuilder.CreateIndex(
                name: "IX_User_EducationalBackgroundCode",
                table: "User",
                column: "EducationalBackgroundCode");
 
            migrationBuilder.CreateIndex(
                name: "IX_User_PersonalIdentityCode",
                table: "User",
                column: "PersonalIdentityCode");
 
            migrationBuilder.AddForeignKey(
                name: "FK_User_DictionaryData_EducationalBackgroundCode",
                table: "User",
                column: "EducationalBackgroundCode",
                principalTable: "DictionaryData",
                principalColumn: "Code",
                onDelete: ReferentialAction.Restrict);
 
            migrationBuilder.AddForeignKey(
                name: "FK_User_DictionaryData_PersonalIdentityCode",
                table: "User",
                column: "PersonalIdentityCode",
                principalTable: "DictionaryData",
                principalColumn: "Code",
                onDelete: ReferentialAction.Restrict);
 
            migrationBuilder.AddForeignKey(
                name: "FK_UserExpectJob_DictionaryData_ExpectJobCode",
                table: "UserExpectJob",
                column: "ExpectJobCode",
                principalTable: "DictionaryData",
                principalColumn: "Code",
                onDelete: ReferentialAction.Restrict);
        }
 
        /// <inheritdoc />
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropForeignKey(
                name: "FK_User_DictionaryData_EducationalBackgroundCode",
                table: "User");
 
            migrationBuilder.DropForeignKey(
                name: "FK_User_DictionaryData_PersonalIdentityCode",
                table: "User");
 
            migrationBuilder.DropForeignKey(
                name: "FK_UserExpectJob_DictionaryData_ExpectJobCode",
                table: "UserExpectJob");
 
            migrationBuilder.DropIndex(
                name: "IX_User_EducationalBackgroundCode",
                table: "User");
 
            migrationBuilder.DropIndex(
                name: "IX_User_PersonalIdentityCode",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "EducationalBackgroundCode",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "FreeTime",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "Height",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "JobSeekingStatus",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "PersonalIdentityCode",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "Weight",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "WorkExperience",
                table: "User");
 
            migrationBuilder.DropColumn(
                name: "WorkSeniority",
                table: "User");
 
            migrationBuilder.RenameColumn(
                name: "ExpectJobCode",
                table: "UserExpectJob",
                newName: "PersonalIdentityCode");
 
            migrationBuilder.RenameIndex(
                name: "IX_UserExpectJob_ExpectJobCode",
                table: "UserExpectJob",
                newName: "IX_UserExpectJob_PersonalIdentityCode");
 
            migrationBuilder.AlterColumn<string>(
                name: "Code",
                table: "UserCredential",
                type: "nvarchar(128)",
                maxLength: 128,
                nullable: false,
                defaultValue: "",
                oldClrType: typeof(string),
                oldType: "nvarchar(128)",
                oldMaxLength: 128,
                oldNullable: true);
 
            migrationBuilder.CreateTable(
                name: "UserResume",
                columns: table => new
                {
                    Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
                    EducationalBackgroundCode = table.Column<string>(type: "nvarchar(128)", nullable: true),
                    PersonalIdentityCode = table.Column<string>(type: "nvarchar(128)", nullable: true),
                    UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
                    CreatedEnterpriseId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
                    CreatedTime = table.Column<DateTimeOffset>(type: "datetimeoffset", nullable: false),
                    CreatedUserId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
                    FreeTime = table.Column<int>(type: "int", nullable: true),
                    Height = table.Column<int>(type: "int", nullable: true),
                    IsDeleted = table.Column<bool>(type: "bit", nullable: false),
                    JobSeekingStatus = table.Column<int>(type: "int", nullable: true),
                    Sort = table.Column<int>(type: "int", nullable: false),
                    TraceId = table.Column<string>(type: "nvarchar(max)", nullable: true),
                    UpdatedTime = table.Column<DateTimeOffset>(type: "datetimeoffset", nullable: true),
                    UpdatedUserId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
                    Weight = table.Column<int>(type: "int", nullable: true),
                    WorkExperience = table.Column<string>(type: "nvarchar(max)", nullable: true),
                    WorkSeniority = table.Column<string>(type: "nvarchar(max)", nullable: true)
                },
                constraints: table =>
                {
                    table.PrimaryKey("PK_UserResume", x => x.Id);
                    table.ForeignKey(
                        name: "FK_UserResume_DictionaryData_EducationalBackgroundCode",
                        column: x => x.EducationalBackgroundCode,
                        principalTable: "DictionaryData",
                        principalColumn: "Code",
                        onDelete: ReferentialAction.Restrict);
                    table.ForeignKey(
                        name: "FK_UserResume_DictionaryData_PersonalIdentityCode",
                        column: x => x.PersonalIdentityCode,
                        principalTable: "DictionaryData",
                        principalColumn: "Code",
                        onDelete: ReferentialAction.Restrict);
                    table.ForeignKey(
                        name: "FK_UserResume_User_UserId",
                        column: x => x.UserId,
                        principalTable: "User",
                        principalColumn: "Id",
                        onDelete: ReferentialAction.Cascade);
                });
 
            migrationBuilder.CreateIndex(
                name: "IX_UserResume_EducationalBackgroundCode",
                table: "UserResume",
                column: "EducationalBackgroundCode");
 
            migrationBuilder.CreateIndex(
                name: "IX_UserResume_PersonalIdentityCode",
                table: "UserResume",
                column: "PersonalIdentityCode");
 
            migrationBuilder.CreateIndex(
                name: "IX_UserResume_UserId",
                table: "UserResume",
                column: "UserId");
 
            migrationBuilder.AddForeignKey(
                name: "FK_UserExpectJob_DictionaryData_PersonalIdentityCode",
                table: "UserExpectJob",
                column: "PersonalIdentityCode",
                principalTable: "DictionaryData",
                principalColumn: "Code",
                onDelete: ReferentialAction.Restrict);
        }
    }
}