@@ -173,6 +173,7 @@ func (m Migrator) HasTable(dst interface{}) bool {
173
173
}
174
174
175
175
// RenameTable See: [gorm.migrator.Migrator.RenameTable]
176
+ //
176
177
// Deprecated: DynamoDB does not possibly rename an existing table, so this operation is not supported.
177
178
//
178
179
// [gorm.migrator.Migrator.RenameTable]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.RenameTable
@@ -189,6 +190,7 @@ func (m Migrator) TableType(dst interface{}) (gorm.TableType, error) {
189
190
}
190
191
191
192
// AddColumn See: [gorm.migrator.Migrator.AddColumn]
193
+ //
192
194
// Deprecated: DynamoDB are schema less, so this operation is not supported.
193
195
//
194
196
// [gorm.migrator.Migrator.AlterColumn]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.AddColumn
@@ -197,6 +199,7 @@ func (m Migrator) AddColumn(dst interface{}, field string) error {
197
199
}
198
200
199
201
// DropColumn See: [gorm.migrator.Migrator.DropColumn]
202
+ //
200
203
// Deprecated: DynamoDB are schema less, so this operation is not supported.
201
204
//
202
205
// [gorm.migrator.Migrator.DropColumn]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.DropColumn
@@ -205,6 +208,7 @@ func (m Migrator) DropColumn(dst interface{}, field string) error {
205
208
}
206
209
207
210
// AlterColumn See: [gorm.migrator.Migrator.AlterColumn]
211
+ //
208
212
// Deprecated: DynamoDB are schema less, so this operation is not supported.
209
213
//
210
214
// [gorm.migrator.Migrator.AlterColumn]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.AlterColumn
@@ -213,6 +217,7 @@ func (m Migrator) AlterColumn(dst interface{}, field string) error {
213
217
}
214
218
215
219
// MigrateColumn See: [gorm.migrator.Migrator.MigrateColumn]
220
+ //
216
221
// Deprecated: DynamoDB are schema less, so this operation is not supported.
217
222
//
218
223
// [gorm.migrator.Migrator.MigrateColumn]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.MigrateColumn
@@ -221,6 +226,7 @@ func (m Migrator) MigrateColumn(dst interface{}, field *schema.Field, columnType
221
226
}
222
227
223
228
// MigrateColumnUnique See: [gorm.migrator.Migrator.MigrateColumnUnique]
229
+ //
224
230
// Deprecated: DynamoDB are schema less, so this operation is not supported.
225
231
//
226
232
// [gorm.migrator.Migrator.MigrateColumnUnique]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.MigrateColumnUnique
@@ -233,6 +239,7 @@ func (m Migrator) HasColumn(dst interface{}, field string) bool {
233
239
}
234
240
235
241
// RenameColumn See: [gorm.migrator.Migrator.RenameColumn]
242
+ //
236
243
// Deprecated: DynamoDB are schema less, so this operation is not supported.
237
244
//
238
245
// [gorm.migrator.Migrator.RenameColumn]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.RenameColumn
@@ -245,6 +252,7 @@ func (m Migrator) ColumnTypes(dst interface{}) ([]gorm.ColumnType, error) {
245
252
}
246
253
247
254
// CreateView See: [gorm.migrator.Migrator.CreateView]
255
+ //
248
256
// Deprecated: DynamoDB does not provide View feature, so this operation is not supported.
249
257
//
250
258
// [gorm.migrator.Migrator.CreateView]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.CreateView
@@ -253,6 +261,7 @@ func (m Migrator) CreateView(name string, option gorm.ViewOption) error {
253
261
}
254
262
255
263
// DropView See: [gorm.migrator.Migrator.DropView]
264
+ //
256
265
// Deprecated: DynamoDB does not provide View feature, so this operation is not supported.
257
266
//
258
267
// [gorm.migrator.Migrator.DropView]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.DropView
@@ -261,6 +270,7 @@ func (m Migrator) DropView(name string) error {
261
270
}
262
271
263
272
// CreateConstraint See: [gorm.migrator.Migrator.CreateConstraint]
273
+ //
264
274
// Deprecated: DynamoDB does not provide constraint feature, so this operation is not supported.
265
275
//
266
276
// [gorm.migrator.Migrator.CreateConstraint]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.CreateConstraint
@@ -269,6 +279,7 @@ func (m Migrator) CreateConstraint(dst interface{}, name string) error {
269
279
}
270
280
271
281
// DropConstraint See: [gorm.migrator.Migrator.DropConstraint]
282
+ //
272
283
// Deprecated: DynamoDB does not provide constraint feature, so this operation is not supported.
273
284
//
274
285
// [gorm.migrator.Migrator.DropConstraint]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.DropConstraint
@@ -277,6 +288,7 @@ func (m Migrator) DropConstraint(dst interface{}, name string) error {
277
288
}
278
289
279
290
// HasConstraint See: [gorm.migrator.Migrator.HasConstraint]
291
+ //
280
292
// Deprecated: DynamoDB does not provide constraint feature, so this operation is not supported.
281
293
//
282
294
// [gorm.migrator.Migrator.HasConstraint]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.HasConstraint
@@ -365,6 +377,7 @@ func (m Migrator) HasIndex(dst interface{}, name string) bool {
365
377
}
366
378
367
379
// RenameIndex See: [gorm.migrator.Migrator.RenameIndex]
380
+ //
368
381
// Deprecated: DynamoDB does not possibly rename an existing index, so this operation is not supported.
369
382
//
370
383
// [gorm.migrator.Migrator.RenameIndex]: https://pkg.go.dev/gorm.io/gorm/migrator#Migrator.RenameIndex
0 commit comments