Skip to content

Commit

Permalink
fix(seeder): add the import the database drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
danvergara committed May 1, 2021
1 parent 0231001 commit 1a5de52
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions db/seeds/seeder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import (
"log"
"reflect"

// mysql driver.
_ "github.com/go-sql-driver/mysql"
"github.com/jmoiron/sqlx"

// postgres driver.
_ "github.com/lib/pq"
)

// Seed type.
Expand Down

0 comments on commit 1a5de52

Please sign in to comment.