1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 04:09:53 +00:00
discourse/db/migrate/20160707195549_add_compiler_version_to_site_customizations.rb

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