Sha256: e4730c5c5d5229e30c91be2e02fbd2139c8e357e61d2dcc872ee7b94b4e43c76
Contents?: true
Size: 380 Bytes
Versions: 17
Compression:
Stored size: 380 Bytes
Contents
# encoding: UTF-8 Sequel.migration do up do alter_table(:content) do drop_index :content_path rename_column :content_path, :visibility_path add_index :visibility_path end end down do alter_table(:content) do drop_index :visibility_path rename_column :visibility_path, :content_path add_index :content_path end end end
Version data entries
17 entries across 17 versions & 1 rubygems