From 2816b1bf8efa61af5abc045a2567220e71f6dad1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 18 Mar 2017 22:51:20 +0100 Subject: Federate header images, fix open-uri http->https redirection error --- db/migrate/20170318214217_add_header_remote_url_to_accounts.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20170318214217_add_header_remote_url_to_accounts.rb (limited to 'db/migrate/20170318214217_add_header_remote_url_to_accounts.rb') diff --git a/db/migrate/20170318214217_add_header_remote_url_to_accounts.rb b/db/migrate/20170318214217_add_header_remote_url_to_accounts.rb new file mode 100644 index 000000000..0ba38d3e0 --- /dev/null +++ b/db/migrate/20170318214217_add_header_remote_url_to_accounts.rb @@ -0,0 +1,5 @@ +class AddHeaderRemoteUrlToAccounts < ActiveRecord::Migration[5.0] + def change + add_column :accounts, :header_remote_url, :string, null: false, default: '' + end +end -- cgit