mirror of https://github.com/go-gorm/gorm.git
Fixed spelling error
This commit is contained in:
parent
8f22434ded
commit
4fa2faf64c
|
@ -129,7 +129,7 @@ db.DropTableIfExists(User{})
|
||||||
|
|
||||||
// Automating Migration
|
// Automating Migration
|
||||||
db.AutoMigrate(User{})
|
db.AutoMigrate(User{})
|
||||||
db.AutoMigrate(User{}, Proudct{}, Order{})
|
db.AutoMigrate(User{}, Product{}, Order{})
|
||||||
|
|
||||||
// Feel free to change your struct, AutoMigrate will keep your database up-to-date.
|
// Feel free to change your struct, AutoMigrate will keep your database up-to-date.
|
||||||
// Fyi, AutoMigrate will only *add new columns*, it won't update column's type or delete unused columns, to make sure your data is safe.
|
// Fyi, AutoMigrate will only *add new columns*, it won't update column's type or delete unused columns, to make sure your data is safe.
|
||||||
|
|
Loading…
Reference in New Issue