discourse/db/migrate/20160707195549_add_compiler...

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

8 lines
220 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddCompilerVersionToSiteCustomizations < ActiveRecord::Migration[4.2]
2016-07-07 16:27:18 -04:00
def change
add_column :site_customizations, :compiler_version, :integer, default: 0, null: false
end
end