]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/040_create_oauth_tables.rb
Cleanup trailing whitespace
[rails.git] / db / migrate / 040_create_oauth_tables.rb
index 95d690512300fbcbeaaf9c86509ff74d258cfd8b..d1095f8344b2cfbbcdc3a1f404d502b9a98a944d 100644 (file)
@@ -12,7 +12,7 @@ class CreateOauthTables < ActiveRecord::Migration
       t.timestamps
     end
     add_index :client_applications, :key, :unique => true
-    
+
     create_table :oauth_tokens do |t|
       t.integer :user_id
       t.string :type, :limit => 20
@@ -22,9 +22,9 @@ class CreateOauthTables < ActiveRecord::Migration
       t.timestamp :authorized_at, :invalidated_at
       t.timestamps
     end
-    
+
     add_index :oauth_tokens, :token, :unique => true
-    
+
     create_table :oauth_nonces do |t|
       t.string :nonce
       t.integer :timestamp
@@ -32,7 +32,7 @@ class CreateOauthTables < ActiveRecord::Migration
       t.timestamps
     end
     add_index :oauth_nonces, [:nonce, :timestamp], :unique => true
-    
+
   end
 
   def self.down