dawarich/db/data/20240713103122_make_first_user_admin.rb

14 lines
229 B
Ruby
Raw Normal View History

2024-07-16 16:26:16 -04:00
# frozen_string_literal: true
class MakeFirstUserAdmin < ActiveRecord::Migration[7.1]
def up
user = User.first
user.update!(admin: true)
end
def down
user = User.first
user.update!(admin: false)
end
end