Files
fetsite/db/migrate/20130805143919_create_fragen.rb
2013-08-05 18:31:04 +02:00

11 lines
169 B
Ruby

class CreateFragen < ActiveRecord::Migration
def change
create_table :fragen do |t|
t.string :title
t.text :text
t.timestamps
end
end
end