Added sortable headers + search + reportable Notes
This commit is contained in:
parent
206e1309a9
commit
69c1f6d186
11 changed files with 177 additions and 48 deletions
7
db/migrate/20150719160821_add_report_count_to_issues.rb
Normal file
7
db/migrate/20150719160821_add_report_count_to_issues.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
class AddReportCountToIssues < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :issues, :report_count, :integer, :default => 0
|
||||
add_foreign_key :issues, :users, :column => :updated_by, :name => "issues_updated_by_fkey", on_delete: :cascade
|
||||
add_index :issues, :updated_by
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue