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

12 lines
313 B

Sequel.migration do
up do
add_column :users, :twitter_datasource_quota, :integer, default: 0
add_column :organizations, :twitter_datasource_quota, :integer, default: 0
end
down do
drop_column :users, :twitter_datasource_quota
drop_column :organizations, :twitter_datasource_quota
end
end