discourse/db/migrate/20201102162044_add_auto_upd...

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

8 lines
188 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddAutoUpdateToThemes < ActiveRecord::Migration[6.0]
def change
add_column :themes, :auto_update, :boolean, null: false, default: true
end
end