8 lines
136 B
Ruby
8 lines
136 B
Ruby
class AddGuestNotes < ActiveRecord::Migration[5.1]
|
|
def change
|
|
change_table :guests do |t|
|
|
t.string :notes
|
|
end
|
|
end
|
|
end
|