This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
barleysodas/db/migrate/003_create_beers.rb

19 lines
425 B
Ruby

class CreateBeers < ActiveRecord::Migration
def self.up
create_table :beers do |t|
t.column :title, :string
t.column :abv, :float
t.column :original_gravity, :float
t.column :final_gravity, :float
t.column :style_id, :integer
t.column :created_at, :timestamp
end
add_index :beers, :title
add_index :beers, :style_id
end
def self.down
drop_table :beers
end
end