dkubb changed the topic of #datamapper to: Datamapper v1.2.0 | Mailing List: http://is.gd/aa9D | Logs: http://is.gd/qWAL7V | DataMapper 2 Renamed to ROM, see #rom-rb for development
knowtheo1y has quit [Quit: Computer has gone to sleep]
mbj_ has joined #datamapper
mbj has joined #datamapper
Sylvain2 has quit [Quit: Leaving.]
mbj_ has quit [Ping timeout: 256 seconds]
rsim has joined #datamapper
mbj has quit [Ping timeout: 264 seconds]
rsim has quit [Ping timeout: 240 seconds]
mbj has joined #datamapper
solnic has quit [Quit: Leaving...]
jeremyevans has joined #datamapper
rsim has joined #datamapper
rsim has quit [Ping timeout: 240 seconds]
v0n has quit [Ping timeout: 276 seconds]
xybre has quit [Ping timeout: 240 seconds]
kurko__ has joined #datamapper
xybre has joined #datamapper
bobocopy has joined #datamapper
v0n has joined #datamapper
snusnu has quit [Ping timeout: 264 seconds]
snusnu has joined #datamapper
bobocopy has quit [Quit: Leaving.]
v0n has quit [Ping timeout: 264 seconds]
v0n has joined #datamapper
kurko__ has quit [Quit: Computer has gone to sleep.]
knowtheory has joined #datamapper
ckrailo has quit [Quit: Computer has gone to sleep.]
zombor has quit [Remote host closed the connection]
Sylvain1 has joined #datamapper
snusnu has quit [Quit: Leaving.]
v0n has quit [Ping timeout: 246 seconds]
mbj has quit [Ping timeout: 260 seconds]
mbj has joined #datamapper
rsim has joined #datamapper
mbj has quit [Read error: Connection reset by peer]
Ortuna has quit [Quit: Computer has gone to sleep.]
ckrailo has joined #datamapper
snusnu has quit [Quit: Leaving.]
<dkubb>
!memo snusnu I fixed that one and/or mutation. can you see if it's an issue for you?
<Cinchy>
dkubb: Memo recorded for snusnu.
snusnu has joined #datamapper
Sylvain1 has quit [Quit: Leaving.]
kurko__ has quit [Ping timeout: 276 seconds]
kurko__ has joined #datamapper
solnic has joined #datamapper
Sylvain1 has joined #datamapper
mbj has joined #datamapper
mbj_ has joined #datamapper
mbj has quit [Ping timeout: 276 seconds]
mbj_ has quit [Ping timeout: 240 seconds]
mbj has joined #datamapper
endorama has joined #datamapper
<endorama>
Hello everyone! I'm searching for a little bit of help using DataMapper and auto_upgrade!
<onewheelskyward>
What's up endorama?
<endorama>
I'm facing a behaviour I'm not understanding...
<endorama>
I'm trying to use DataMapper in a standalone ruby gem
<endorama>
I'm doing the database setup using DataMapper.setup(:default, 'sqlite::memory:')
<endorama>
Then performing the DataMapper.finalize
<endorama>
up to now all is clear and working well
<endorama>
Now, I need to create the database, which, if I'm not misunderstanding, could be created using DataMapper.auto_migrate! or DataMapperauto_upgrade!
<endorama>
using auto_migrate! wipe the database, which is something I do not need.
<endorama>
using auto_upgrade! one time is fine.
<endorama>
using it a second time ( so when the tables are present )
<endorama>
results in a duplicate column error on the :id propriety of my model
solnic has quit [Quit: Leaving...]
<endorama>
if I'm correct auto_upgrade! should only add elements if not already present, not performing an ALTER TABLE on a AutoIncrement Integer