10 lines
214 B
Ruby
10 lines
214 B
Ruby
|
class AddOriginById < ActiveRecord::Migration
|
||
|
def up
|
||
|
|
||
|
# return if it's a new setup
|
||
|
return if !Setting.find_by(name: 'system_init_done')
|
||
|
|
||
|
add_column :ticket_articles, :origin_by_id, :integer
|
||
|
end
|
||
|
end
|