0
如果我有這個程序。DataMapper,何時致電最終確定
require 'dm-core'
require 'dm-migrations'
DataMapper::Logger.new($stdout, :debug)
DataMapper.setup(:default, 「sqlite3:///#{Dir.pwd}mydb.sqlite」)
class MyClass
include DataMapper::Resource
property :id, Serial
property :column1, String, :required => true
end
DataMapper.auto_migrate!
class MyClass
property :column2, String
end
DataMapper.auto_upgrade!
它將運行並創建一個表myclasses
,然後更新表。 這是否意味着我不需要撥打DataMapper.finalize
?
如果我需要打電話,我應該在哪裏打電話?