dawarich/db/migrate/20250404182437_add_active_until_to_users.rb

8 lines
161 B
Ruby
Raw Normal View History

2025-04-04 14:27:46 -04:00
# frozen_string_literal: true
class AddActiveUntilToUsers < ActiveRecord::Migration[8.0]
def change
add_column :users, :active_until, :datetime
end
end