mirror of
https://github.com/mastodon/mastodon.git
synced 2026-04-26 10:06:15 -05: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
|