cartodb/db/migrate/20160803125905_add_auth_token_to_groups.rb

8 lines
113 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
change do
alter_table :groups do
add_column :auth_token, :text
end
end
end