Merge branch 'master' into openstreetbugs
Conflicts: app/views/site/index.html.erb
This commit is contained in:
commit
a1cb0f04d4
133 changed files with 2435 additions and 3040 deletions
11
db/migrate/20100910084426_add_callback_to_oauth_tokens.rb
Normal file
11
db/migrate/20100910084426_add_callback_to_oauth_tokens.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
class AddCallbackToOauthTokens < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :oauth_tokens, :callback_url, :string
|
||||
add_column :oauth_tokens, :verifier, :string, :limit => 20
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :oauth_tokens, :callback_url
|
||||
remove_column :oauth_tokens, :verifier
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue