mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 01:17:36 +08:00
7 lines
161 B
Ruby
7 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameActionsToUserActions < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_table "actions", "user_actions"
|
|
end
|
|
end
|