mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-08-30 00:59:13 +00:00
6 lines
148 B
Ruby
6 lines
148 B
Ruby
class ChangeColumnInRequests < ActiveRecord::Migration[5.2]
|
|
def change
|
|
change_column :requests, :accepted, :boolean, default: false
|
|
end
|
|
end
|