Sha256: 3c7ef2710651eb878524d4b5807b6ad37c362f5f977041ebd0829d3eeff0591c
Contents?: true
Size: 377 Bytes
Versions: 3
Compression:
Stored size: 377 Bytes
Contents
# This migration comes from flyboy (originally 20150407070804) class StatesToString < ActiveRecord::Migration def change change_column :flyboy_goals, :status, :string Flyboy::Goal.where(status: "0").update_all(status: "pending") Flyboy::Goal.where(status: "1").update_all(status: "open") Flyboy::Goal.where(status: "2").update_all(status: "closed") end end
Version data entries
3 entries across 3 versions & 1 rubygems