Sha256: 442759edd8b78a0e6a57106bd37cba28db97aef74bdf51b74585498d558fc99b

Contents?: true

Size: 357 Bytes

Versions: 4

Compression:

Stored size: 357 Bytes

Contents

Sequel.migration do
  up do
    [:content, :spontaneous_content_archive, :spontaneous_content_history].each do |table|
      set_column_type table, :path, 'varchar(2048)'
    end
  end

  down do
    [:content, :spontaneous_content_archive, :spontaneous_content_history].each do |table|
      set_column_type table, :path, 'varchar(255)'
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spontaneous-0.2.0.beta5 db/migrations/20130813111009_increase_path_length.rb
spontaneous-0.2.0.beta4 db/migrations/20130813111009_increase_path_length.rb
spontaneous-0.2.0.beta3 db/migrations/20130813111009_increase_path_length.rb
spontaneous-0.2.0.beta2 db/migrations/20130813111009_increase_path_length.rb