Sha256: 7d1b77c4c1c0d282053a4f293281d146b59a4f7590fc62adf1ffccf77182d9b8
Contents?: true
Size: 232 Bytes
Versions: 34
Compression:
Stored size: 232 Bytes
Contents
class AddParentIdToEnumerations < ActiveRecord::Migration def self.up add_column :enumerations, :parent_id, :integer, :null => true, :default => nil end def self.down remove_column :enumerations, :parent_id end end
Version data entries
34 entries across 34 versions & 1 rubygems