Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Since we're building migrations on top of gorm, you should check the gorm's doc

Here are some examples

### Create table via model declearation.
### Create table via model declaration.
```go
package main

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func main() {
if migrateAction == "db:init" {
fileName, err := migrate.CreateConnection(c)
if err != nil {
fmt.Println("Initiail connection file failed.", err)
fmt.Println("Initial connection file failed.", err)
return
}

Expand Down