femslash-city/migrations/017_add_domain.rb

9 lines
138 B
Ruby
Raw Permalink Normal View History

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