6 lines
140 B
Ruby
6 lines
140 B
Ruby
class AddNameFieldToSignatureSheets < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :signature_sheets, :title, :string
|
|
end
|
|
end
|