You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/db/migrate/20120406115845_add_likes_co...

7 lines
203 B
Ruby

class AddLikesCountToAsciicast < ActiveRecord::Migration
def change
add_column :asciicasts, :likes_count, :integer, :null => false, :default => 0
add_index :asciicasts, :likes_count
end
end