cartodb-4.42/db/migrate/20110309181959_add_table_indexes_metadata.rb

12 lines
198 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
class AddTableIndexesMetadataMigration < Sequel::Migration
def up
add_column :user_tables, :indexes, 'character varying[]'
end
def down
drop_column :user_tables, :indexes
end
end