9 lines
145 B
Ruby
9 lines
145 B
Ruby
class ClearAsciicastSnapshots < ActiveRecord::Migration
|
|
def up
|
|
execute "UPDATE asciicasts SET snapshot = NULL"
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|