Files
x-stake/db/seeds.rb
2021-08-28 01:31:04 -03:00

11 lines
211 B
Ruby

# frozen_string_literal: true
AdminUser.create!(email: "admin@example.com", password: "password")
User.create!(
first_name: "Test",
last_name: "User",
email: "user@example.com",
password: "password"
)