We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
You can use use the migration generator to create a new Sequel migration to modify your database schema.
Create a new migration like:
$ pliny-generate migration "add phone to artists" created migration ./db/migrate/1438776880_add_phone_to_artists.rb
It will create an empty migration:
Sequel.migration do up do end down do end end
You can edit the migration to suit your needs and then run it with:
$ rake db:migrate
Further reading:
Home
Basics
Diving in
Guides