diff options
| author | horus | 2018-02-15 15:02:41 +0100 |
|---|---|---|
| committer | horus | 2018-02-15 15:02:41 +0100 |
| commit | 933978a5f244e6907c4ef13388a0829839037978 (patch) | |
| tree | 17049d057893a392ffc24f6f8ce3f800b504f230 /crawler/shops.go | |
| parent | 8ee15ccf1f5ee54efc2f973ff59b5cc58dff44fa (diff) | |
| download | alkobote-933978a5f244e6907c4ef13388a0829839037978.tar.gz | |
Bugfix. (crawler)
Diffstat (limited to 'crawler/shops.go')
| -rw-r--r-- | crawler/shops.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crawler/shops.go b/crawler/shops.go index 63c98ba..9cad602 100644 --- a/crawler/shops.go +++ b/crawler/shops.go @@ -7,7 +7,7 @@ import ( func (app *App) insertShops() error { shops := getShopsFromStruct() - query := `INSERT IGNORE INTO shop (name, url, short_url, logo_url, shipping_costs, free_shipping) VALUES(?, ?, ?, ?, ?)` + query := `INSERT IGNORE INTO shop (name, url, short_url, logo_url, shipping_costs, free_shipping) VALUES(?, ?, ?, ?, ?, ?)` for _, v := range shops { |
