asciinema.org/db/migrate/20120409142151_add_comments_count_to_asciicast.rb
2012-04-09 16:46:08 +02:00

6 lines
168 B
Ruby

class AddCommentsCountToAsciicast < ActiveRecord::Migration
def change
add_column :asciicasts, :comments_count, :integer, :null => false, :default => 0
end
end