2018-11-13 02:27:31 -05:00
|
|
|
class CreateApplicationSettingTerms < ActiveRecord::Migration[4.2]
|
2018-04-24 05:37:41 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
create_table :application_setting_terms do |t|
|
|
|
|
t.integer :cached_markdown_version
|
|
|
|
t.text :terms, null: false
|
|
|
|
t.text :terms_html
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|