mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-12 04:31:11 +00:00
8 lines
179 B
Ruby
8 lines
179 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeUsersDefaultRoleId < ActiveRecord::Migration[7.1]
|
|
def change
|
|
change_column_default :users, :role_id, from: nil, to: -99
|
|
end
|
|
end
|