Skip to content

Commit 41c7d92

Browse files
committed
Allow big integer values for Toggl ID
As Toggl IDs get bigger, Redmine tables need to be able to accomodate them.
1 parent 1dd68a1 commit 41c7d92

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# frozen_string_literal: true
2+
3+
class ChangeTogglMappingsTogglIdToBigint < ActiveRecord::Migration[4.2]
4+
def up
5+
change_column :toggl_mappings, :toggl_id, :bigint
6+
end
7+
end

0 commit comments

Comments
 (0)