forked from bofh/fetsite
7 lines
165 B
Ruby
7 lines
165 B
Ruby
class AddDraftToThemen < ActiveRecord::Migration
|
|
def change
|
|
add_column :themen, :hideattachment, :boolean
|
|
add_column :themen, :isdraft, :boolean
|
|
end
|
|
end
|