mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 00:36:18 +08:00
8 lines
157 B
Ruby
8 lines
157 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddUserToPermalink < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :permalinks, :user_id, :integer
|
||
|
end
|
||
|
end
|