forked from bofh/fetsite
8 lines
203 B
Ruby
8 lines
203 B
Ruby
class AddWikiToThema < ActiveRecord::Migration
|
|
def change
|
|
add_column :themen, :wikiname, :string
|
|
add_column :themen, :wikiformat, :integer
|
|
add_column :themen, :hidelink, :boolean
|
|
end
|
|
end
|