asciinema.org/db/migrate/20120409142151_add_comments_count_to_asciicast.rb

6 lines
168 B
Ruby
Raw Normal View History

2012-04-09 14:46:08 +00:00
class AddCommentsCountToAsciicast < ActiveRecord::Migration
def change
add_column :asciicasts, :comments_count, :integer, :null => false, :default => 0
end
end