ADD: Informationsseite:

Models für Themengruppen/Themen/FAQs/Attachments
Views für Themengruppen/Themen
This commit is contained in:
HausdorffHimself
2013-08-13 18:31:22 +02:00
parent a2b35d3d60
commit e055b60a53
16 changed files with 101 additions and 62 deletions

View File

@@ -6,7 +6,7 @@ class TranslateThemen < ActiveRecord::Migration
}, {
#:migrate_data => true
})
add_column :thema_translations, :themen_id, :integer
add_column :thema_translations, :theman_id, :integer
remove_column :thema_translations, :thema_id
Themengruppe.create_translation_table!({

View File

@@ -0,0 +1,6 @@
class AddThemaidToThemaTranslations < ActiveRecord::Migration
def change
add_column :thema_translations, :theman_id, :integer
remove_column :thema_translations, :themen_id, :integer
end
end