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/20150814133226_add_visualiz...

14 lines
211 B

4 years ago
Sequel.migration do
up do
alter_table :visualizations do
add_column :display_name, :text
end
end
down do
alter_table :visualizations do
drop_column :display_name
end
end
end