asciinema.org/db/migrate/20130708225200_clear_asciicast_snapshots.rb

9 lines
145 B
Ruby
Raw Normal View History

2013-07-08 22:55:31 +00:00
class ClearAsciicastSnapshots < ActiveRecord::Migration
def up
execute "UPDATE asciicasts SET snapshot = NULL"
end
def down
end
end