Skip to content

Instantly share code, notes, and snippets.

View DylanLacey's full-sized avatar

The Gentlehacker DylanLacey

View GitHub Profile
@DylanLacey
DylanLacey / gist:3977844
Created October 30, 2012 01:48
MTData Consistent AR
module MTData
module CityNamespaceMixin
def self.included(base)
base.establish_connection "mtdata"
base.table_name = "#{$CITY_NAME}].[dbo].[Place"
end
end
class Perth
$CITY_NAME = "Perth"