mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:59:50 +08:00
8 lines
161 B
Ruby
8 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameActionsToUserActions < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_table "actions", "user_actions"
|
|
end
|
|
end
|