asciinema.org/db/migrate/20130828162232_add_stdout_frames_to_asciicast.rb

6 lines
134 B
Ruby
Raw Normal View History

class AddStdoutFramesToAsciicast < ActiveRecord::Migration
def change
add_column :asciicasts, :stdout_frames, :string
end
end