7 lines
178 B
Ruby
7 lines
178 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIsHighlightInEvents < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :events, :is_highlight, :boolean, default: false
|
|
end
|
|
end
|