You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20140627102015_add_extra_fi...

18 lines
549 B

Sequel.migration do
up do
add_column :organizations, :website, :text
add_column :organizations, :description, :text
add_column :organizations, :display_name, :text
add_column :organizations, :discus_shortname, :text
add_column :organizations, :twitter_username, :text
end
down do
drop_column :organizations, :website
drop_column :organizations, :description
drop_column :organizations, :display_name
drop_column :organizations, :discus_shortname
drop_column :organizations, :twitter_username
end
end