AutoMigrate runs auto migration for given entity
(entity interface{}, clauses ...Clause)
| 115 | type Dal interface { |
| 116 | // AutoMigrate runs auto migration for given entity |
| 117 | AutoMigrate(entity interface{}, clauses ...Clause) errors.Error |
| 118 | // AddColumn add column for the table |
| 119 | AddColumn(table, columnName string, columnType ColumnType) errors.Error |
| 120 | // DropColumns drop column from the table |
no outgoing calls
no test coverage detected