Add critical status to issues
This commit is contained in:
parent
afe98ae74a
commit
9afee5ad52
8 changed files with 84 additions and 10 deletions
5
db/migrate/20111025134235_add_high_label_to_issue.rb
Normal file
5
db/migrate/20111025134235_add_high_label_to_issue.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddHighLabelToIssue < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :issues, :critical, :boolean, :default => false, :null => false
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20111021101550) do
|
||||
ActiveRecord::Schema.define(:version => 20111025134235) do
|
||||
|
||||
create_table "issues", :force => true do |t|
|
||||
t.string "title"
|
||||
|
@ -23,6 +23,7 @@ ActiveRecord::Schema.define(:version => 20111021101550) do
|
|||
t.datetime "updated_at"
|
||||
t.boolean "closed", :default => false, :null => false
|
||||
t.integer "position", :default => 0
|
||||
t.boolean "critical", :default => false, :null => false
|
||||
end
|
||||
|
||||
create_table "keys", :force => true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue