|
|
|
@ -18,7 +18,7 @@ type Column struct {
|
|
|
|
|
// Create @Title 创建model
|
|
|
|
|
func Create(db *gorm.DB, table string, path ...string) error {
|
|
|
|
|
var columns []Column
|
|
|
|
|
sql := fmt.Sprintf("select * from information_schema.COLUMNS where table_name ='%s'", db.NamingStrategy.TableName(table))
|
|
|
|
|
sql := fmt.Sprintf("select * from information_schema.COLUMNS where table_name ='%s' order by ordinal_position", db.NamingStrategy.TableName(table))
|
|
|
|
|
db.Raw(sql).Scan(&columns)
|
|
|
|
|
tableName := camelString(table)
|
|
|
|
|
|
|
|
|
|