discourse/db/migrate/20180309014014_add_private_key_to_remote_theme.rb
Sam 39e679d3cb FEATURE: allow themes to live in private git repos
This feature allows themes sourced from git to live on private
servers, it automatically generates key pairs.
2018-03-09 16:14:38 +11:00

6 lines
138 B
Ruby

class AddPrivateKeyToRemoteTheme < ActiveRecord::Migration[5.1]
def change
add_column :remote_themes, :private_key, :text
end
end