diff options
author | VSizov <fk@sphere.com> | 2011-10-15 20:41:38 +0300 |
---|---|---|
committer | VSizov <fk@sphere.com> | 2011-10-15 20:41:38 +0300 |
commit | e6bba9be4f0400471170e9d86f3ef15344416f2f (patch) | |
tree | 6761ca63f811722ab36dd00ea57a4121dbdf8d61 /db | |
parent | df016465cdce1bab78536e7f8faa63f5eace718e (diff) | |
download | gitlab-ce-e6bba9be4f0400471170e9d86f3ef15344416f2f.tar.gz |
icon for handler of sortable
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20111015154310_add_position_to_issues.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20111015154310_add_position_to_issues.rb b/db/migrate/20111015154310_add_position_to_issues.rb new file mode 100644 index 00000000000..41451a0cabb --- /dev/null +++ b/db/migrate/20111015154310_add_position_to_issues.rb @@ -0,0 +1,5 @@ +class AddPositionToIssues < ActiveRecord::Migration + def change + add_column :issues, :position, :integer, :default => 0 + end +end |