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/20110309181959_add_table_in...

12 lines
198 B

4 years ago
class AddTableIndexesMetadataMigration < Sequel::Migration
def up
add_column :user_tables, :indexes, 'character varying[]'
end
def down
drop_column :user_tables, :indexes
end
end