discourse/db/migrate/20190630165003_add_enabled_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
181 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddEnabledToThemes < ActiveRecord::Migration[5.2]
def change
add_column :themes, :enabled, :boolean, null: false, default: true
end
end