Milestone basic scaffold
This commit is contained in:
parent
667edcdd75
commit
23d950855d
28 changed files with 424 additions and 36 deletions
12
db/migrate/20120408180246_create_milestones.rb
Normal file
12
db/migrate/20120408180246_create_milestones.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class CreateMilestones < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :milestones do |t|
|
||||
t.string :title, :null => false
|
||||
t.integer :project_id, :null => false
|
||||
t.text :description
|
||||
t.date :due_date
|
||||
t.boolean :closed, :default => false, :null => false
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
5
db/migrate/20120408181910_add_milestone_id_to_issue.rb
Normal file
5
db/migrate/20120408181910_add_milestone_id_to_issue.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddMilestoneIdToIssue < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :issues, :milestone_id, :integer, :null => true
|
||||
end
|
||||
end
|
22
db/schema.rb
22
db/schema.rb
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20120405211750) do
|
||||
ActiveRecord::Schema.define(:version => 20120408181910) do
|
||||
|
||||
create_table "events", :force => true do |t|
|
||||
t.string "target_type"
|
||||
|
@ -30,13 +30,14 @@ ActiveRecord::Schema.define(:version => 20120405211750) do
|
|||
t.integer "assignee_id"
|
||||
t.integer "author_id"
|
||||
t.integer "project_id"
|
||||
t.datetime "created_at", :null => false
|
||||
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.datetime "created_at", :null => false
|
||||
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"
|
||||
end
|
||||
|
||||
add_index "issues", ["project_id"], :name => "index_issues_on_project_id"
|
||||
|
@ -69,6 +70,15 @@ ActiveRecord::Schema.define(:version => 20120405211750) do
|
|||
|
||||
add_index "merge_requests", ["project_id"], :name => "index_merge_requests_on_project_id"
|
||||
|
||||
create_table "milestones", :force => true do |t|
|
||||
t.string "title", :null => false
|
||||
t.text "description"
|
||||
t.date "due_date", :null => false
|
||||
t.integer "project_id", :null => false
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
end
|
||||
|
||||
create_table "notes", :force => true do |t|
|
||||
t.text "note"
|
||||
t.string "noteable_id"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue