Initial release of Discourse

This commit is contained in:
Robin Ward
2013-02-05 14:16:51 -05:00
commit 21b5628528
2932 changed files with 143949 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# avatar_url does not function properly as it does not properly deal with scaling.
# css based scaling is inefficient and has terrible results in both firefox and ie. canvas based scaling is slow.
#
# for local urls we need to upload an image and have a pointer to the upload, then use the upload id in the user table
# for gravatar we already have the email and can hash it
class DropAvatarUrlFromUsers < ActiveRecord::Migration
def up
remove_column :users, :avatar_url
end
def down
add_column :users, :avatar_url, :string, null: false, default: ''
end
end