class CreateWorks < ActiveRecord::Migration
  def self.up
    create_table :works do |t|
	t.column :id, :int
	t.column :name, :string
	t.column :description, :text
	t.column :section, :string
	t.column :price, :string
	t.column :measure, :string
	t.column :step_button, :string
      t.timestamps
    end
  end

  def self.down
    drop_table :works
  end
end
