discourse/db/migrate/20170328203122_add_compiler...

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

8 lines
206 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddCompilerVersionToThemeFields < ActiveRecord::Migration[4.2]
def change
add_column :theme_fields, :compiler_version, :integer, null: false, default: 0
end
end