20260327035652_Migration_20260327115644.cs
5.75 KB
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
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Rcs.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class Migration_20260327115644 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<Guid>(
name: "drop_apply_request_config_id",
table: "storage_location_types",
type: "uuid",
nullable: true);
migrationBuilder.AddColumn<Guid>(
name: "drop_complete_request_config_id",
table: "storage_location_types",
type: "uuid",
nullable: true);
migrationBuilder.AddColumn<Guid>(
name: "pickup_apply_request_config_id",
table: "storage_location_types",
type: "uuid",
nullable: true);
migrationBuilder.AddColumn<Guid>(
name: "pickup_complete_request_config_id",
table: "storage_location_types",
type: "uuid",
nullable: true);
migrationBuilder.CreateIndex(
name: "idx_storage_location_type_drop_apply_request_config_id",
table: "storage_location_types",
column: "drop_apply_request_config_id");
migrationBuilder.CreateIndex(
name: "idx_storage_location_type_drop_complete_request_config_id",
table: "storage_location_types",
column: "drop_complete_request_config_id");
migrationBuilder.CreateIndex(
name: "idx_storage_location_type_pickup_apply_request_config_id",
table: "storage_location_types",
column: "pickup_apply_request_config_id");
migrationBuilder.CreateIndex(
name: "idx_storage_location_type_pickup_complete_request_config_id",
table: "storage_location_types",
column: "pickup_complete_request_config_id");
migrationBuilder.AddForeignKey(
name: "FK_storage_location_types_net_action_propertys_drop_apply_requ~",
table: "storage_location_types",
column: "drop_apply_request_config_id",
principalTable: "net_action_propertys",
principalColumn: "net_action_id",
onDelete: ReferentialAction.SetNull);
migrationBuilder.AddForeignKey(
name: "FK_storage_location_types_net_action_propertys_drop_complete_r~",
table: "storage_location_types",
column: "drop_complete_request_config_id",
principalTable: "net_action_propertys",
principalColumn: "net_action_id",
onDelete: ReferentialAction.SetNull);
migrationBuilder.AddForeignKey(
name: "FK_storage_location_types_net_action_propertys_pickup_apply_re~",
table: "storage_location_types",
column: "pickup_apply_request_config_id",
principalTable: "net_action_propertys",
principalColumn: "net_action_id",
onDelete: ReferentialAction.SetNull);
migrationBuilder.AddForeignKey(
name: "FK_storage_location_types_net_action_propertys_pickup_complete~",
table: "storage_location_types",
column: "pickup_complete_request_config_id",
principalTable: "net_action_propertys",
principalColumn: "net_action_id",
onDelete: ReferentialAction.SetNull);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_storage_location_types_net_action_propertys_drop_apply_requ~",
table: "storage_location_types");
migrationBuilder.DropForeignKey(
name: "FK_storage_location_types_net_action_propertys_drop_complete_r~",
table: "storage_location_types");
migrationBuilder.DropForeignKey(
name: "FK_storage_location_types_net_action_propertys_pickup_apply_re~",
table: "storage_location_types");
migrationBuilder.DropForeignKey(
name: "FK_storage_location_types_net_action_propertys_pickup_complete~",
table: "storage_location_types");
migrationBuilder.DropIndex(
name: "idx_storage_location_type_drop_apply_request_config_id",
table: "storage_location_types");
migrationBuilder.DropIndex(
name: "idx_storage_location_type_drop_complete_request_config_id",
table: "storage_location_types");
migrationBuilder.DropIndex(
name: "idx_storage_location_type_pickup_apply_request_config_id",
table: "storage_location_types");
migrationBuilder.DropIndex(
name: "idx_storage_location_type_pickup_complete_request_config_id",
table: "storage_location_types");
migrationBuilder.DropColumn(
name: "drop_apply_request_config_id",
table: "storage_location_types");
migrationBuilder.DropColumn(
name: "drop_complete_request_config_id",
table: "storage_location_types");
migrationBuilder.DropColumn(
name: "pickup_apply_request_config_id",
table: "storage_location_types");
migrationBuilder.DropColumn(
name: "pickup_complete_request_config_id",
table: "storage_location_types");
}
}
}