ActiveRecordInlineSchema

Define table structure (columns and indexes) inside your ActiveRecord models like you can do in migrations. Also similar to DataMapper inline schema syntax.

Specify columns like you would with ActiveRecord migrations and then run .auto_upgrade! Based on the mini_record gem from Davide D'Agostino, it adds fewer aliases, doesn't create timestamps and relationship columns automatically.

Production use

Over 2 years in Brighter Planet's environmental impact API and reference data service.

Lots and lots of use in the earth library.

Examples

class Breed < ActiveRecord::Base
  col :species_name
  col :weight, :type => :float
  col :weight_units
end
Breed.auto_upgrade!

class Airport < ActiveRecord::Base
  self.primary_key = "iata_code"
  belongs_to :country, :foreign_key => 'country_iso_3166_code', :primary_key => 'iso_3166_code'
  col :iata_code
  col :name
  col :city
  col :country_name
  col :country_iso_3166_code
  col :latitude, :type => :float
  col :longitude, :type => :float
end
Airport.auto_upgrade!

class ApiResponse < ActiveRecord::Base
  # store with:    self.raw_body = Zlib::Deflate.deflate(body, Zlib::BEST_SPEED)
  # retrieve with: Zlib::Inflate.inflate(raw_body).force_encoding 'UTF-8'
  # just an idea!
  col :raw_body, :type => 'varbinary(16384)'
end
ApiResponse.auto_upgrade!

Credits

Massive thanks to DAddYE, who you follow on twitter @daddye and look at his site at daddye.it

TODO

  • make the documentation as good as mini_record
  • investigate switching back to ActiveRecord::ConnectionAdapters::TableDefinition as a way of holding column and index info

History

Forked from mini_record version v0.2.1 - thanks @daddye! See CHANGELOG for a rough outline of the differences.

Copyright 2012 Seamus Abshere

Adapted from mini_record, which is copyright 2011 Davide D'Agostino

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.