mirror of
https://github.com/discourse/discourse.git
synced 2026-08-17 16:35:03 -05:00
Convert a lot of :a => b to a: b and bring peace to the world
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
class AddTwitterUserInfo < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :twitter_user_infos do |t|
|
||||
t.integer :user_id, :null => false
|
||||
t.string :screen_name, :null => false
|
||||
t.integer :twitter_user_id, :null => false
|
||||
t.integer :user_id, null: false
|
||||
t.string :screen_name, null: false
|
||||
t.integer :twitter_user_id, null: false
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_index :twitter_user_infos, [:twitter_user_id], :unique => true
|
||||
add_index :twitter_user_infos, [:user_id], :unique => true
|
||||
add_index :twitter_user_infos, [:twitter_user_id], unique: true
|
||||
add_index :twitter_user_infos, [:user_id], unique: true
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user