franzejr / micro-activerecord

A minimalist Active Record
1 stars 0 forks source link

Support types #1

Open rafaelsales opened 8 years ago

rafaelsales commented 8 years ago

This is so that MAR is able to load data from files in the same type they were inserted.

E.g:

columns :name, :age

could be

column :name, type: string
column :age, type: integer
rafaelsales commented 8 years ago

Evaluate using Virtus to ease this feature development