femslash-city/migrations/103_sites_api_key.rb

10 lines
127 B
Ruby
Raw Permalink Normal View History

Sequel.migration do
up {
DB.add_column :sites, :api_key, :text
}
down {
DB.drop_column :sites, :api_key
}
end