Conflicts:
	app/controllers/neuigkeiten_controller.rb
	config/routes.rb
This commit is contained in:
Thomas Blazek
2014-08-27 15:31:52 +02:00
46 changed files with 1053 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
class CreateFetmeetings < ActiveRecord::Migration
def change
create_table :fetmeetings do |t|
t.text :tnlist
t.integer :typ
t.timestamps
end
end
end

View File

@@ -0,0 +1,13 @@
class CreateFetmeetingtops < ActiveRecord::Migration
def change
create_table :fetmeetingtops do |t|
t.string :title
t.text :text
t.text :discussion
t.string :ersteller
t.integer :fetmeeting_id
t.timestamps
end
end
end