移行時に次のコードを含むビルド済みモデルに基づいてモデルをセットアップしようとしています。
def change
create_table :friendships do |t|
t.string :user_id, :friend_user_id
t.string :status
end
end
t.string :status
文字列を使用する列が作成されている部分を取得します。t.string :user_id, :friend_user_id
同じ行に2つの属性がある部分がわかりません。