Files
fetsite/db/migrate/20150219142123_add_sticky_to_thema.rb
Andreas Stephanides a0427336c8 sticky topics
2015-02-23 09:19:30 +01:00

10 lines
343 B
Ruby

class AddStickyToThema < ActiveRecord::Migration
def change
add_column :themen, :sticky_startpage, :boolean
add_column :themen, :sticky_intern, :boolean
add_column :themengruppen, :sticky_startpage, :boolean
add_column :themengruppen, :sticky_intern, :boolean
add_column :galleries, :sticky_startpage, :boolean
end
end