0
0
Fork 0

Add basic logging of who resolved report

This commit is contained in:
Eugen Rochko 2017-04-03 19:27:30 +02:00
parent 71458dc6df
commit 68f829e11c
6 changed files with 26 additions and 13 deletions

View file

@ -0,0 +1,5 @@
class AddActionTakenByAccountIdToReports < ActiveRecord::Migration[5.0]
def change
add_column :reports, :action_taken_by_account_id, :integer
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170330164118) do
ActiveRecord::Schema.define(version: 20170403172249) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -201,13 +201,14 @@ ActiveRecord::Schema.define(version: 20170330164118) do
end
create_table "reports", force: :cascade do |t|
t.integer "account_id", null: false
t.integer "target_account_id", null: false
t.bigint "status_ids", default: [], null: false, array: true
t.text "comment", default: "", null: false
t.boolean "action_taken", default: false, null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "account_id", null: false
t.integer "target_account_id", null: false
t.bigint "status_ids", default: [], null: false, array: true
t.text "comment", default: "", null: false
t.boolean "action_taken", default: false, null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "action_taken_by_account_id"
end
create_table "settings", force: :cascade do |t|