dawarich/db/migrate/20250404182437_add_active_until_to_users.rb
2025-04-04 20:27:46 +02:00

7 lines
161 B
Ruby

# frozen_string_literal: true
class AddActiveUntilToUsers < ActiveRecord::Migration[8.0]
def change
add_column :users, :active_until, :datetime
end
end