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

17 lines
267 B
Ruby

require 'carto/db/migration_helper'
include Carto::Db::MigrationHelper
migration(
Proc.new do
alter_table :widgets do
add_column :style, :json, null: true
end
end,
Proc.new do
alter_table :widgets do
drop_column :style
end
end
)