-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Labels
Milestone
Description
class User
schema users do
type created_at : Time, default: true, not_null: true
type updated_at : Time
end
# Expands to
#
property! created_at : Time
property updated_at : Time # Note that it is not bang
end
User.update.set(created_at: nil) # Compilation-time error
User.update.set(updated_at: nil) # OKReactions are currently unavailable