diff options
author | ThibG <thib@sitedethib.com> | 2019-03-17 15:34:56 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-17 15:34:56 +0100 |
commit | a20354a20b9dffada0e8d6170ebc2ff13c79baea (patch) | |
tree | 74d1a47399b0cbd24187562b1a864ae5e984979c /db/migrate | |
parent | 5e38ef87a7b8bac59ffa0d98464086ab8a60a2e1 (diff) |
Set and store report URIs (#10303)
Fixes #10271
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20190317135723_add_uri_to_reports.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20190317135723_add_uri_to_reports.rb b/db/migrate/20190317135723_add_uri_to_reports.rb new file mode 100644 index 000000000..47c0f2a21 --- /dev/null +++ b/db/migrate/20190317135723_add_uri_to_reports.rb @@ -0,0 +1,5 @@ +class AddUriToReports < ActiveRecord::Migration[5.2] + def change + add_column :reports, :uri, :string + end +end |