Sha256: 64b3e6c391cb264bbcad532a07782e301ab2d3cf10782c000cd5e1e98453eb6d

Contents?: true

Size: 258 Bytes

Versions: 1

Compression:

Stored size: 258 Bytes

Contents

class AddMostRecentToUserExportFileTransitions < ActiveRecord::Migration[5.0]
  def up
    add_column :user_export_file_transitions, :most_recent, :boolean, null: true
  end

  def down
    remove_column :user_export_file_transitions, :most_recent
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
enju_seed-0.3.0.beta.4 spec/dummy/db/migrate/20160627232316_add_most_recent_to_user_export_file_transitions.rb