This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
class AddBaristaCreateDate < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :baristas, :created_on, :date
|
|
end
|
|
|
|
def self.down
|
|
drop_column :baristas, :created_on
|
|
end
|
|
end
|