adding the Person model for the people table
This commit is contained in:
parent
815469f6ae
commit
9085ad1117
2
cookbook/015/hodgepodge/app/models/person.rb
Normal file
2
cookbook/015/hodgepodge/app/models/person.rb
Normal file
@ -0,0 +1,2 @@
|
||||
class Person < ActiveRecord::Base
|
||||
end
|
@ -0,0 +1,12 @@
|
||||
class CreatePeople < ActiveRecord::Migration
|
||||
def self.up
|
||||
create_table :people do |t|
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
|
||||
def self.down
|
||||
drop_table :people
|
||||
end
|
||||
end
|
11
cookbook/015/hodgepodge/test/fixtures/people.yml
vendored
Normal file
11
cookbook/015/hodgepodge/test/fixtures/people.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
||||
|
||||
# This model initially had no columns defined. If you add columns to the
|
||||
# model remove the '{}' from the fixture names and add the columns immediately
|
||||
# below each fixture, per the syntax in the comments below
|
||||
#
|
||||
one: {}
|
||||
# column: value
|
||||
#
|
||||
two: {}
|
||||
# column: value
|
8
cookbook/015/hodgepodge/test/unit/person_test.rb
Normal file
8
cookbook/015/hodgepodge/test/unit/person_test.rb
Normal file
@ -0,0 +1,8 @@
|
||||
require 'test_helper'
|
||||
|
||||
class PersonTest < ActiveSupport::TestCase
|
||||
# Replace this with your real tests.
|
||||
test "the truth" do
|
||||
assert true
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user