class CreatePlugins < ActiveRecord::Migration def self.up create_table :plugins do |t| t.column :name, :string t.column :author, :string t.column :email, :string t.column :summary, :string t.column :description, :text t.column :repository, :string end end def self.down drop_table :plugins end end