FEATURE: permalinks lookup table can redirect to any arbitrary url

This commit is contained in:
Neil Lalonde
2014-10-08 11:50:44 -04:00
parent dcd4956ea4
commit 8a88e71b3c
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddExernalUrlToPermalinks < ActiveRecord::Migration
def change
add_column :permalinks, :external_url, :string, limit: 1000
end
end