# Used by the password expiration feature create_table :account_password_change_times, id: false do |t| t.<%= primary_key_type(nil) %> :id, primary_key: true t.foreign_key :accounts, column: :id t.datetime :changed_at, null: false, default: <%= current_timestamp %> end