Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update seeds #13

Merged
merged 6 commits into from
May 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/controllers/employees_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class EmployeesController < AuthorizedController

end
2 changes: 2 additions & 0 deletions app/models/employee.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class Employee < ApplicationRecord
end
3 changes: 3 additions & 0 deletions app/resources/employee_resource.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class EmployeeResource < JSONAPI::Resource
attributes :title, :created_at, :first_name
end
1 change: 1 addition & 0 deletions config/routes.rb
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@
jsonapi_resources :products
jsonapi_resources :users
jsonapi_resources :roles
jsonapi_resources :employees
jsonapi_resources :orders
jsonapi_resources :customers
jsonapi_resources :suppliers
24 changes: 24 additions & 0 deletions db/migrate/20170516130923_add_employee_table.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
class AddEmployeeTable < ActiveRecord::Migration[5.0]
def change
create_table :employees do |t|
t.string :last_name
t.string :first_name
t.string :title
t.string :title_of_courtesy
t.date :birth_date
t.date :hire_date
t.string :address
t.string :city
t.string :region
t.string :postal_code
t.string :country
t.string :home_phone
t.string :extension
t.string :photo
t.text :notes
t.integer :reports_to
t.datetime :created_at
t.datetime :updated_at
end
end
end
4 changes: 4 additions & 0 deletions db/seeds.rb
Original file line number Diff line number Diff line change
@@ -32,3 +32,7 @@
20.times do |n|
FactoryGirl.create(:product)
end

20.times do |n|
FactoryGirl.create(:employee)
end
68 changes: 65 additions & 3 deletions db/structure.sql
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@
-- PostgreSQL database dump
--

-- Dumped from database version 9.6.2
-- Dumped by pg_dump version 9.6.2
-- Dumped from database version 9.6.3
-- Dumped by pg_dump version 9.6.3

SET statement_timeout = 0;
SET lock_timeout = 0;
@@ -109,6 +109,52 @@ CREATE SEQUENCE comments_id_seq
ALTER SEQUENCE comments_id_seq OWNED BY comments.id;


--
-- Name: employees; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE employees (
id integer NOT NULL,
last_name character varying,
first_name character varying,
title character varying,
title_of_courtesy character varying,
birth_date date,
hire_date date,
address character varying,
city character varying,
region character varying,
postal_code character varying,
country character varying,
home_phone character varying,
extension character varying,
photo character varying,
notes text,
reports_to integer,
created_at timestamp without time zone,
updated_at timestamp without time zone
);


--
-- Name: employees_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;


--
-- Name: employees_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE employees_id_seq OWNED BY employees.id;


--
-- Name: posts; Type: TABLE; Schema: public; Owner: -
--
@@ -255,6 +301,13 @@ ALTER TABLE ONLY categories ALTER COLUMN id SET DEFAULT nextval('categories_id_s
ALTER TABLE ONLY comments ALTER COLUMN id SET DEFAULT nextval('comments_id_seq'::regclass);


--
-- Name: employees id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY employees ALTER COLUMN id SET DEFAULT nextval('employees_id_seq'::regclass);


--
-- Name: posts id; Type: DEFAULT; Schema: public; Owner: -
--
@@ -300,6 +353,14 @@ ALTER TABLE ONLY comments
ADD CONSTRAINT comments_pkey PRIMARY KEY (id);


--
-- Name: employees employees_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY employees
ADD CONSTRAINT employees_pkey PRIMARY KEY (id);


--
-- Name: posts posts_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
@@ -423,6 +484,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20170328194726'),
('20170418135338'),
('20170504204400'),
('20170508090812');
('20170508090812'),
('20170516130923');


21 changes: 21 additions & 0 deletions spec/factories/employee.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FactoryGirl.define do
factory :employee do
last_name { Faker::Name.last_name }
first_name { Faker::Name.first_name }
title { Faker::Name.title }
title_of_courtesy { Faker::Name.title }
birth_date { Faker::Date.backward(720) }
hire_date { Faker::Date.backward(10) }
address { Faker::Address.street_address }
city { Faker::Address.city }
region { Faker::Address.state }
postal_code { Faker::Address.postcode }
country { Faker::Address.country }
home_phone { Faker::PhoneNumber.phone_number }
extension { 'jpg' }
photo { Faker::Placeholdit.image("50x50") }
notes { Faker::Lorem.paragraph }
created_at { Faker::Date.backward(20) }
updated_at { Faker::Date.backward(15) }
end
end
7 changes: 7 additions & 0 deletions test/controllers/category_controller_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'test_helper'

class CategoryControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end
7 changes: 7 additions & 0 deletions test/controllers/employee_controller_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'test_helper'

class EmployeeControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end