Skip to content

Instantly share code, notes, and snippets.

View mohelsaka's full-sized avatar

Mohamed mohelsaka

  • Amsterdam, Netherlands
View GitHub Profile
@mohelsaka
mohelsaka / data_generation.rb
Created May 4, 2014 14:31
Generating random data records in MonogDB and MySQL
# MongoDB DATA GENERATION
class LogEntry
include Mongoid::Document
include Mongoid::Timestamps
field :machine_id, type: String
field :event, type: String
field :message, type: String
field :user_id, type: String
end