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/20190612101226_add_signup_f...

19 lines
339 B

require 'carto/db/migration_helper'
include Carto::Db::MigrationHelper
migration(
Proc.new do
alter_table :users do
add_column :company_employees, String
add_column :use_case, String
end
end,
Proc.new do
alter_table :users do
drop_column :company_employees
drop_column :use_case
end
end
)