Explorar el Código

Removed broken association

pull/3/head
Adrian Short hace 16 años
padre
commit
d0e54ab882
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      lib/models.rb

+ 2
- 2
lib/models.rb Ver fichero

@@ -1,5 +1,5 @@
require 'rubygems' require 'rubygems'
gem "datamapper", "0.9.11"
# gem "datamapper", "0.9.11"
require 'dm-core' require 'dm-core'
require 'dm-validations' require 'dm-validations'
require 'dm-timestamps' require 'dm-timestamps'
@@ -37,7 +37,7 @@ class Directorate
property :name, String, :length => 255, :required => true property :name, String, :length => 255, :required => true
property :slug, String, :length => 255 property :slug, String, :length => 255
has n, :payments, { :through => :services, :order => ['d'] }
# has n, :payments, { :through => :services, :order => ['d'] }
has n, :services, :order => ['name'] has n, :services, :order => ['name']
has n, :suppliers, { :through => :services, :order => ['name'] } has n, :suppliers, { :through => :services, :order => ['name'] }




Cargando…
Cancelar
Guardar