Added migration to add timestamp column for screenshots

This commit is contained in:
Christoph Haas 2013-08-06 22:37:17 +02:00
parent 6454f994a9
commit f9e920aea5

View file

@ -0,0 +1,7 @@
class CreateScreenshots < ActiveRecord::Migration
def change
change_table :screenshots do |t|
t.timestamps
end
end
end