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/20160114082200_add_created_...

11 lines
300 B

Sequel.migration do
up do
add_column :user_creations, :created_via, :text, null: false, default: 'org_signup'
SequelRails.connection.run("update user_creations set created_via = 'api' where created_via_api = 'true'")
end
down do
drop_column :user_creations, :created_via
end
end