change meetings

This commit is contained in:
Sai
2014-08-27 15:22:47 +02:00
parent 3b6a964ae6
commit 585b386e7c
45 changed files with 1046 additions and 1 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