Remove critical status from Issue. Move sort instead
This commit is contained in:
parent
1b1e77c728
commit
50fdb2e7df
12 changed files with 30 additions and 65 deletions
9
db/migrate/20120627145613_remove_critical_from_issue.rb
Normal file
9
db/migrate/20120627145613_remove_critical_from_issue.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
class RemoveCriticalFromIssue < ActiveRecord::Migration
|
||||
def up
|
||||
remove_column :issues, :critical
|
||||
end
|
||||
|
||||
def down
|
||||
add_column :issues, :critical, :boolean, :null => true, :default => false
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20120413135904) do
|
||||
ActiveRecord::Schema.define(:version => 20120627145613) do
|
||||
|
||||
create_table "events", :force => true do |t|
|
||||
t.string "target_type"
|
||||
|
@ -34,7 +34,6 @@ ActiveRecord::Schema.define(:version => 20120413135904) do
|
|||
t.datetime "updated_at", :null => false
|
||||
t.boolean "closed", :default => false, :null => false
|
||||
t.integer "position", :default => 0
|
||||
t.boolean "critical", :default => false, :null => false
|
||||
t.string "branch_name"
|
||||
t.text "description"
|
||||
t.integer "milestone_id"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue