asciinema.org/db/migrate/20131011181418_add_user_agent_to_asciicast.rb

6 lines
128 B
Ruby
Raw Normal View History

class AddUserAgentToAsciicast < ActiveRecord::Migration
def change
add_column :asciicasts, :user_agent, :string
end
end