asciinema.org/db/migrate/20141115172558_add_private_to_asciicasts.rb
2015-04-25 10:15:28 +00:00

6 lines
154 B
Ruby

class AddPrivateToAsciicasts < ActiveRecord::Migration
def change
add_column :asciicasts, :private, :boolean, null: false, default: false
end
end