Conflicts:
	Gemfile.lock
	config/routes.rb
This commit is contained in:
Thomas Blazek
2015-01-11 22:18:05 +01:00
45 changed files with 1047 additions and 3 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