cartodb/db/migrate/20130805121621_add_kind_to_assets.rb
2020-06-15 10:58:47 +08:00

8 lines
107 B
Ruby

Sequel.migration do
change do
alter_table :assets do
add_column :kind, :text
end
end
end