1
0
Fork 0
oldhaven/db/migrate/20110618191349_add_status_t...

10 lines
177 B
Ruby
Raw Permalink Normal View History

2011-06-19 21:23:22 +00:00
class AddStatusToArtists < ActiveRecord::Migration
def self.up
add_column :artists, :status, :integer
end
def self.down
remove_column :artists, :status
end
end