asciinema.org/db/migrate/20120406152447_add_snapshot_to_asciicast.rb

7 lines
124 B
Ruby
Raw Normal View History

2012-04-06 18:49:54 +00:00
class AddSnapshotToAsciicast < ActiveRecord::Migration
def change
add_column :asciicasts, :snapshot, :text
end
end