beathaven/db/migrate/20120901111329_add_is_hidden_field_to_albums.rb
2012-09-01 21:55:01 +04:00

6 lines
141 B
Ruby

class AddIsHiddenFieldToAlbums < ActiveRecord::Migration
def change
add_column :albums, :is_hidden, :boolean, default: false
end
end