why
why

Reputation: 24851

How to migrate database with sequel and mysql ?

I can migrate database without password like this

sequel -m db/migrations mysql://root@localhost/test

But how to pass a password ?

Upvotes: 1

Views: 1117

Answers (1)

Jeremy Evans
Jeremy Evans

Reputation: 12139

sequel -m db/migrations mysql://root:password@localhost/test

Upvotes: 4

Related Questions