From 03b1ffc1a0576f707b323f821597770d66eaae1e Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 1 Jun 2018 16:41:28 +0100 Subject: Add an optional association to backends for data snapshots I'm a bit unsure about this, but it feels like generating snapshots remotely is useful, but if that is supported, then a remote snapshot won't be available locally to use. Adding the option of making them backend specific is one way of working around this. --- db/migrate/20180601153537_add_backend_to_govuk_guix_data_snapshot.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20180601153537_add_backend_to_govuk_guix_data_snapshot.rb (limited to 'db/migrate') diff --git a/db/migrate/20180601153537_add_backend_to_govuk_guix_data_snapshot.rb b/db/migrate/20180601153537_add_backend_to_govuk_guix_data_snapshot.rb new file mode 100644 index 0000000..9f6f7cc --- /dev/null +++ b/db/migrate/20180601153537_add_backend_to_govuk_guix_data_snapshot.rb @@ -0,0 +1,5 @@ +class AddBackendToGovukGuixDataSnapshot < ActiveRecord::Migration[5.1] + def change + add_reference :govuk_guix_data_snapshots, :backend, polymorphic: true + end +end -- cgit v1.2.3