Guest User

Untitled

a guest
Jun 4th, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. [fcoury@macbook 20:30]:~/Projects/caf[master]$ script/console
  2. Loading development environment (Rails 2.1.2)
  3. >> a = Abastecimento.new
  4. => #<Abastecimento id: nil, data: nil, tipo: nil, user_id: nil, turno_id: nil, bico_id: nil, veiculo_id: nil, motorista_id: nil, km: nil, qtd: nil, created_at: nil, updated_at: nil>
  5. >> a.motorista = Motorista.find(1)
  6. => #<Motorista id: 1, identificador: "OEXW-10835.51", nome: "Cinthia Oshima", created_at: "2009-02-16 16:14:00", updated_at: "2009-02-16 16:14:00", cnh: nil, expiracao_cnh: nil>
  7. >> a.veiculo = Veiculo.find(1)
  8. => #<Veiculo id: 1, identificador: "DKF-8761", descr: "Ford Probe", chassis: nil, centro_de_custo_id: "20", created_at: "2009-02-16 16:13:59", updated_at: "2009-02-16 19:13:59", combustivel_veiculo_id: 4>
  9. >> a.user = User.find(1)
  10. => #<User id: 1, login: "admin", identity_url: nil, name: "", email: "admin@example.com", crypted_password: "0158af014ba811bc70598ccee3bb3c3e2c097242", salt: "6cd00f068a4fcb55bdb1940170a169e314deeafa", remember_token: nil, activation_code: "7f1c2c65e9cbee490397986e019aac8e878a68e0", state: "active", remember_token_expires_at: nil, password_reset_code: nil, activated_at: nil, deleted_at: nil, created_at: "2009-02-16 19:14:00", updated_at: "2009-02-16 19:14:00">
  11. >> a.bico = Bico.find(1)
  12. => #<Bico id: 1, descr: "Bico 1", bomba_id: 1, created_at: "2009-02-16 16:13:59", updated_at: "2009-02-16 16:13:59", tanque_id: "1">
  13. >> a.turno = Turno.find(1)
  14. => #<Turno id: 1, descr: "Manhã", de: "2000-01-01 08:00:00", ate: "2000-01-01 14:00:00", created_at: "2009-02-16 19:13:59", updated_at: "2009-02-16 19:13:59">
  15. >> a.save!
  16. => true
Add Comment
Please, Sign In to add comment