My Recent Pastes (3 and counting)

Pastes by evanpro (3 and counting)

Below are the 3 most recent pasties by evanpro.

July 11, 2007
4:35PM EDT
by evanpro

class Foo < ActiveRecord::Base
    has_and_belongs_to_many :bars
end

class Bar < ActiveRecord::Base

July 10, 2007
11:45PM EDT
by evanpro

class Foo < ActiveRecord::Base
end

class Bar < Foo
end

July 09, 2007
1:14PM EDT
by evanpro

create table animal (
    `name` varchar(64) not null primary key,
    `type` varchar(16) not null,
    `count_legs` int   not null,
    -- only used for birds