7 lines
124 B
Ruby
7 lines
124 B
Ruby
|
class AddSnapshotToAsciicast < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :asciicasts, :snapshot, :text
|
||
|
|
||
|
end
|
||
|
end
|