mirror of https://github.com/docusealco/docuseal
parent
46f350217a
commit
8e39f0078d
@ -0,0 +1,19 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddSourceToTemplates < ActiveRecord::Migration[7.0]
|
||||
class MigrationTemplate < ApplicationRecord
|
||||
self.table_name = 'templates'
|
||||
end
|
||||
|
||||
def up
|
||||
add_column :templates, :source, :text
|
||||
|
||||
MigrationTemplate.where(source: nil).update_all(source: :native)
|
||||
|
||||
change_column_null :templates, :source, false
|
||||
end
|
||||
|
||||
def down
|
||||
drop_column :templates, :source
|
||||
end
|
||||
end
|
||||
Loading…
Reference in new issue