Skip to content

Instantly share code, notes, and snippets.

@luizcarvalho
Created May 7, 2009 00:03
Show Gist options
  • Save luizcarvalho/107829 to your computer and use it in GitHub Desktop.
Save luizcarvalho/107829 to your computer and use it in GitHub Desktop.
>> usuario = Usuario.create(:nome=>"Dextter",:endereco=>"Al 2",
:cpf=>12312312323,:nascimento=>"2009-01-01",
:descricao=>"Usuario")
=> <Usuario id: 4>
>> projeto = Projeto.create(:nome=>"Segundo Projeto")
=> <Projeto id: 2>
>> usuario.projetos << projeto
=> [<Projeto id: 2>]
>> usuario.projetos << Projeto.find(1)
=> [<Projeto id: 2>, <Projeto id: 1>]
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment