Created
September 26, 2011 19:23
-
-
Save nateware/1243131 to your computer and use it in GitHub Desktop.
Proposed syntax for mini_record
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Contact < ActiveRecord::Base | |
col :name, :type => String, :null => false | |
col :contact_type_id, :type => Integer, :null => false | |
col :address, :type => String, :limit => 1000 | |
col :city, :type => String | |
col :state, :type => String, :limit => 40 | |
col :zip, :type => String, :limit => 20 | |
col :phone, :type => String, :limit => 20 | |
col :email, :type => String, :limit => 100 | |
end | |
# in Ruby 1.9 it looks even cleaner: | |
class Contact < ActiveRecord::Base | |
col :name, type: String, null: false | |
col :contact_type_id, type: Integer, null: false | |
col :address, type: String, limit: 1000 | |
col :city, type: String | |
col :state, type: String, limit: 40 | |
col :zip, type: String, limit: 20 | |
col :phone, type: String, limit: 20 | |
col :email, type: String, limit: 100 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment