asciinema.org/db/migrate/20130708225200_clear_asciicast_snapshots.rb
2013-08-06 00:37:32 +02:00

9 lines
145 B
Ruby

class ClearAsciicastSnapshots < ActiveRecord::Migration
def up
execute "UPDATE asciicasts SET snapshot = NULL"
end
def down
end
end