README.md in cql_model-0.0.1 vs README.md in cql_model-0.0.2
- old
+ new
@@ -23,10 +23,14 @@
require 'cql_model'
Cql::Base.establish_connection(host: '127.0.0.1')
class Person < Cql::Model
- # Define your class
+ primary_key :id
+
+ column :first_name, String
+ column :last_name, String
+ column :dob, Date
end
## Contributing
1. Fork it