sticky topics

This commit is contained in:
Andreas Stephanides
2015-02-23 09:19:30 +01:00
parent 81e97837de
commit a0427336c8
4 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
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