class CreateApps < ActiveRecord::Migration
  def self.up
    create_table :apps do |t|
			t.column :name, :string
			t.column :description, :text
		end
  end

  def self.down
    drop_table :apps
  end
end

