12 lines
198 B
Ruby
12 lines
198 B
Ruby
|
class AddTableIndexesMetadataMigration < Sequel::Migration
|
||
|
|
||
|
def up
|
||
|
add_column :user_tables, :indexes, 'character varying[]'
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
drop_column :user_tables, :indexes
|
||
|
end
|
||
|
|
||
|
end
|