Create virus scan model to store clamav result

This commit is contained in:
Mathieu Magnin 2018-05-11 14:59:20 +02:00
parent 645d112f5c
commit 927cd3c6f4
4 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,12 @@
class CreateVirusScans < ActiveRecord::Migration[5.2]
def change
create_table :virus_scans do |t|
t.datetime :scanned_at
t.string :status
t.references :champ, index: true
t.string :blob_key
t.timestamps
end
end
end

View file

@ -594,6 +594,16 @@ ActiveRecord::Schema.define(version: 2018_06_01_084546) do
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
create_table "virus_scans", force: :cascade do |t|
t.datetime "scanned_at"
t.string "status"
t.bigint "champ_id"
t.string "blob_key"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["champ_id"], name: "index_virus_scans_on_champ_id"
end
create_table "without_continuation_mails", id: :serial, force: :cascade do |t|
t.text "body"
t.string "subject"