Sha256: 0a3481515297bfe694f1d3e79d97bb1fae0ccf4193526ec91e3e97975e8af1a0

Contents?: true

Size: 1.04 KB

Versions: 27

Compression:

Stored size: 1.04 KB

Contents

ActiveRecord::Base.establish_connection(
  :adapter  => 'sqlite3',
  :database => File.join(File.dirname(__FILE__), 'test.db')
)

class CreateSchema < ActiveRecord::Migration
  def self.up
    create_table :users, :force => true do |t|
      t.string  :first_name
      t.string  :last_name
      t.string  :email
      t.string  :username
      t.boolean :admin, :default => false
    end

    create_table :posts, :force => true do |t|
      t.string  :name  
      t.integer :author_id
    end
    
    create_table :business, :force => true do |t|
      t.string  :name  
      t.integer :owner_id
    end
  end
end

CreateSchema.suppress_messages { CreateSchema.migrate(:up) }

class User < ActiveRecord::Base
  validates_presence_of :first_name, :last_name, :email
  has_many :posts, :foreign_key => 'author_id'
end

class Business < ActiveRecord::Base
  validates_presence_of :name, :owner_id
  belongs_to :owner, :class_name => 'User'
end

class Post < ActiveRecord::Base
  validates_presence_of :name, :author_id
  belongs_to :author, :class_name => 'User'
end

Version data entries

27 entries across 27 versions & 13 rubygems

Version Path
BrettRasmussen-factory_girl-1.2.2 spec/models.rb
BrettRasmussen-factory_girl-1.2.3 spec/models.rb
agibralter-factory_girl-1.2.1 spec/models.rb
lacomartincik-factory_girl-1.2.1.1 spec/models.rb
qrush-factory_girl-1.2.1.1 spec/models.rb
thoughtbot-factory_girl-1.2.0 test/models.rb
thoughtbot-factory_girl-1.2.1 test/models.rb
thoughtbot-factory_girl-1.2.2 spec/models.rb
vitalish-factory_girl-1.2.10 spec/models.rb
vitalish-factory_girl-1.2.9 spec/models.rb
vitalish-factory_girl-1.2.8 spec/models.rb
vitalish-factory_girl-1.2.7 spec/models.rb
vitalish-factory_girl-1.2.6 spec/models.rb
lockbox_middleware-1.2.1 vendor/gems/factory_girl-1.2.3/spec/models.rb
malvestuto_factory_girl-1.2.5 spec/models.rb
factory_girl-1.2.4 spec/models.rb
jeffrafter-factory_girl-1.2.3 spec/models.rb
masa-iwasaki-factory_girl-1.2.3.2 spec/models.rb
masa-iwasaki-factory_girl-1.2.3.1 spec/models.rb
factory_girl-1.2.0 test/models.rb