beathaven/db/migrate/20120901111329_add_is_hidden_field_to_albums.rb

6 lines
141 B
Ruby
Raw Normal View History

2012-09-01 21:55:01 +04:00
class AddIsHiddenFieldToAlbums < ActiveRecord::Migration
def change
add_column :albums, :is_hidden, :boolean, default: false
end
end