class CreateInformation < ActiveRecord::Migration
def change
create_table :information do |t|
t.string :name
t.text :description
t.integer :type_of
t.boolean :active
t.timestamps
end