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/20140804151839_add_twitter_...

22 lines
811 B

4 years ago
Sequel.migration do
up do
add_column :organizations, :twitter_datasource_enabled, :boolean
add_column :organizations, :twitter_datasource_block_price, :integer
add_column :organizations, :twitter_datasource_block_size, :integer
add_column :users, :twitter_datasource_enabled, :boolean
add_column :users, :twitter_datasource_block_price, :integer
add_column :users, :twitter_datasource_block_size, :integer
end
down do
drop_column :organizations, :twitter_datasource_enabled
drop_column :organizations, :twitter_datasource_block_price
drop_column :organizations, :twitter_datasource_block_size
drop_column :users, :twitter_datasource_enabled
drop_column :users, :twitter_datasource_block_price
drop_column :users, :twitter_datasource_block_size
end
end