From 4f68fd970dfe83f28f9b86f39a5bef18c7c1a6b5 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Tue, 23 Aug 2016 15:09:09 -0400 Subject: [PATCH] FIX: Forgot to include a file in the previous commit :) --- .../20160823171911_add_path_whitelist_to_embeddable_hosts.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20160823171911_add_path_whitelist_to_embeddable_hosts.rb diff --git a/db/migrate/20160823171911_add_path_whitelist_to_embeddable_hosts.rb b/db/migrate/20160823171911_add_path_whitelist_to_embeddable_hosts.rb new file mode 100644 index 00000000000..9b49fd161ca --- /dev/null +++ b/db/migrate/20160823171911_add_path_whitelist_to_embeddable_hosts.rb @@ -0,0 +1,5 @@ +class AddPathWhitelistToEmbeddableHosts < ActiveRecord::Migration + def change + add_column :embeddable_hosts, :path_whitelist, :string + end +end