Quote postgres datatype.

FossilOrigin-Name: b3c53efdf577a8db8a955d7789723d0d6df44b37b3f769090d31980261ee2eb6
This commit is contained in:
mahlon@laika.com 2014-10-28 20:39:01 +00:00
parent 649332a422
commit 22eae27d60

View file

@ -10,7 +10,7 @@ class Lastrun < Sequel::Migration
def up
if @db.adapter_scheme == :postgres
add_column :metronome, :lastrun, timestamptz
add_column :metronome, :lastrun, 'timestamptz'
else
add_column :metronome, :lastrun, DateTime
end