15 lines
290 B
Ruby
15 lines
290 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
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
drop_table :beers
|
||
|
end
|
||
|
end
|