Skip to content

Instantly share code, notes, and snippets.

@MichaelDrogalis
Last active December 10, 2015 04:38
Show Gist options
  • Save MichaelDrogalis/4381990 to your computer and use it in GitHub Desktop.
Save MichaelDrogalis/4381990 to your computer and use it in GitHub Desktop.
Draft for dibble 0.2.0 release
(ns rjm-seeding.core
(:require [dibble.core :refer [defseed]]))
(defseed users
{:database {:db "rjmadmin" :user "root" :password "" :vendor :mysql} :table :rjm_users}
[:inherit :uid]
[:randomized :salt :length 5]
[:randomized :saltedpw :length 5]
[:randomized :email :length 5]
[:value-of :browser (rand-nth ["firefox" "chrome" "ie"])]
[:value-of :os (rand-nth ["windows" "linux" "os x"])])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment