Sha256: f048055d148c5882030a7d1c94c96c979490e10137a860179745b06ffd3ca148
Contents?: true
Size: 323 Bytes
Versions: 17
Compression:
Stored size: 323 Bytes
Contents
class AddProjectIdToTasks < ActiveRecord::Migration def up add_column :tasks, :project_id, :integer execute "UPDATE tasks SET project_id=tickets.project_id FROM tickets WHERE ticket_id=tickets.id" change_column_null :tasks, :project_id, false end def down remove_column :tasks, :project_id end end
Version data entries
17 entries across 17 versions & 1 rubygems