You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 28, 2018. It is now read-only.
Was trying tool for sqlite3 migration.
$cat ./migration/1_init_schema.up.sql
CREATE TABLE pets (
name string
);
command:
$./migrate.linux-amd64 -database "sqlite3" -path ./migration/ up 1
error: no scheme
Is this bcoz I didn't passed DB? How the DB file is supposed to get created ?
From command line we use
$sqlite3 test.db
What need to be done ?
The text was updated successfully, but these errors were encountered: