@@ -1055,17 +1055,24 @@ defmodule AshPostgres.MigrationGenerator.Operation do
1055
1055
@ moduledoc false
1056
1056
defstruct [ :schema , :table , :keys , no_phase: true ]
1057
1057
1058
- def up ( % { schema: schema , table: table , keys: keys } ) do
1058
+ def up ( % { schema: schema , table: table , keys: keys , multitenancy: multitenancy } ) do
1059
1059
keys = Enum . join ( keys , ", " )
1060
1060
1061
- if schema do
1062
- """
1063
- execute("ALTER TABLE \\ \" #{ schema } .#{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1064
- """
1065
- else
1066
- """
1067
- execute("ALTER TABLE \\ \" #{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1068
- """
1061
+ cond do
1062
+ multitenancy . strategy == :context ->
1063
+ """
1064
+ execute("ALTER TABLE \\ \" \# {prefix()}\\ \" .\\ \" #{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1065
+ """
1066
+
1067
+ schema ->
1068
+ """
1069
+ execute("ALTER TABLE \\ \" #{ schema } .#{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1070
+ """
1071
+
1072
+ true ->
1073
+ """
1074
+ execute("ALTER TABLE \\ \" #{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1075
+ """
1069
1076
end
1070
1077
end
1071
1078
@@ -1082,33 +1089,54 @@ defmodule AshPostgres.MigrationGenerator.Operation do
1082
1089
""
1083
1090
end
1084
1091
1085
- def down ( % { schema: schema , table: table , remove_old?: remove_old? , keys: keys } ) do
1092
+ def down ( % {
1093
+ schema: schema ,
1094
+ table: table ,
1095
+ remove_old?: remove_old? ,
1096
+ keys: keys ,
1097
+ multitenancy: multitenancy
1098
+ } ) do
1086
1099
keys = Enum . join ( keys , ", " )
1087
1100
1088
- if schema do
1089
- remove_old =
1090
- if remove_old? do
1091
- """
1092
- execute("ALTER TABLE \\ \" #{ schema } .#{ table } \\ \" DROP constraint #{ table } _pkey")
1093
- """
1094
- end
1101
+ cond do
1102
+ multitenancy . strategy == :context ->
1103
+ remove_old =
1104
+ if remove_old? do
1105
+ """
1106
+ execute("ALTER TABLE \\ \" \# {prefix()}\\ \" .\\ \" #{ table } \\ \" DROP constraint #{ table } _pkey")
1107
+ """
1108
+ end
1095
1109
1096
- """
1097
- #{ remove_old }
1098
- execute("ALTER TABLE \\ \" #{ schema } .#{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1099
- """
1100
- else
1101
- remove_old =
1102
- if remove_old? do
1103
- """
1104
- execute("ALTER TABLE \\ \" #{ table } \\ \" DROP constraint #{ table } _pkey")
1105
- """
1106
- end
1110
+ """
1111
+ #{ remove_old }
1112
+ execute("ALTER TABLE \\ \" \# {prefix()}\\ \" .\\ \" #{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1113
+ """
1114
+
1115
+ not is_nil ( schema ) ->
1116
+ remove_old =
1117
+ if remove_old? do
1118
+ """
1119
+ execute("ALTER TABLE \\ \" #{ schema } .#{ table } \\ \" DROP constraint #{ table } _pkey")
1120
+ """
1121
+ end
1122
+
1123
+ """
1124
+ #{ remove_old }
1125
+ execute("ALTER TABLE \\ \" #{ schema } .#{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1126
+ """
1127
+
1128
+ true ->
1129
+ remove_old =
1130
+ if remove_old? do
1131
+ """
1132
+ execute("ALTER TABLE \\ \" #{ table } \\ \" DROP constraint #{ table } _pkey")
1133
+ """
1134
+ end
1107
1135
1108
- """
1109
- #{ remove_old }
1110
- execute("ALTER TABLE \\ \" #{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1111
- """
1136
+ """
1137
+ #{ remove_old }
1138
+ execute("ALTER TABLE \\ \" #{ table } \\ \" ADD PRIMARY KEY (#{ keys } )")
1139
+ """
1112
1140
end
1113
1141
end
1114
1142
end
@@ -1117,11 +1145,16 @@ defmodule AshPostgres.MigrationGenerator.Operation do
1117
1145
@ moduledoc false
1118
1146
defstruct [ :schema , :table , no_phase: true ]
1119
1147
1120
- def up ( % { schema: schema , table: table } ) do
1121
- if schema do
1122
- "drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" , prefix: \" #{ schema } \" )"
1123
- else
1124
- "drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" )"
1148
+ def up ( % { schema: schema , table: table , multitenancy: multitenancy } ) do
1149
+ cond do
1150
+ multitenancy . strategy == :context ->
1151
+ "drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" , prefix: prefix())"
1152
+
1153
+ schema ->
1154
+ "drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" , prefix: \" #{ schema } \" )"
1155
+
1156
+ true ->
1157
+ "drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" )"
1125
1158
end
1126
1159
end
1127
1160
@@ -1138,7 +1171,7 @@ defmodule AshPostgres.MigrationGenerator.Operation do
1138
1171
""
1139
1172
end
1140
1173
1141
- def down ( % { schema: schema , table: table , commented?: commented? } ) do
1174
+ def down ( % { schema: schema , table: table , commented?: commented? , multitenancy: multitenancy } ) do
1142
1175
comment =
1143
1176
if commented? do
1144
1177
"""
@@ -1149,10 +1182,15 @@ defmodule AshPostgres.MigrationGenerator.Operation do
1149
1182
""
1150
1183
end
1151
1184
1152
- if schema do
1153
- "#{ comment } drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" , prefix: \" #{ schema } \" )"
1154
- else
1155
- "#{ comment } drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" )"
1185
+ cond do
1186
+ multitenancy . strategy == :context ->
1187
+ "#{ comment } drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" , prefix: prefix())"
1188
+
1189
+ schema ->
1190
+ "#{ comment } drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" , prefix: \" #{ schema } \" )"
1191
+
1192
+ true ->
1193
+ "#{ comment } drop constraint(#{ inspect ( table ) } , \" #{ table } _pkey\" )"
1156
1194
end
1157
1195
end
1158
1196
end
0 commit comments