journalduhacker/db/migrate/20140701153554_add_user_weblog_url.rb
joshua stein 85cb7c2057 first stab at planet rss aggregation
could probably use a prettier layout and auto-posting a weblog url
to the main site (carrying tags)
2014-08-03 22:07:57 -05:00

6 lines
137 B
Ruby

class AddUserWeblogUrl < ActiveRecord::Migration
def change
add_column :users, :weblog_feed_url, :string, :length => 500
end
end