From 84db8024dfe821efefadf77f91922f0944833a40 Mon Sep 17 00:00:00 2001 From: David Gay Date: Tue, 6 Apr 2021 20:11:30 -0400 Subject: PTU action types --- app/models/ptu_action_type.rb | 3 +++ db/migrate/20210407000858_create_ptu_action_types.rb | 9 +++++++++ db/schema.rb | 8 +++++++- db/seeds.rb | 2 ++ test/fixtures/ptu_action_types.yml | 7 +++++++ test/models/ptu_action_type_test.rb | 9 +++++++++ 6 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 app/models/ptu_action_type.rb create mode 100644 db/migrate/20210407000858_create_ptu_action_types.rb create mode 100644 test/fixtures/ptu_action_types.yml create mode 100644 test/models/ptu_action_type_test.rb diff --git a/app/models/ptu_action_type.rb b/app/models/ptu_action_type.rb new file mode 100644 index 0000000..116264b --- /dev/null +++ b/app/models/ptu_action_type.rb @@ -0,0 +1,3 @@ +class PtuActionType < ApplicationRecord + validates :name, presence: true +end diff --git a/db/migrate/20210407000858_create_ptu_action_types.rb b/db/migrate/20210407000858_create_ptu_action_types.rb new file mode 100644 index 0000000..fc33972 --- /dev/null +++ b/db/migrate/20210407000858_create_ptu_action_types.rb @@ -0,0 +1,9 @@ +class CreatePtuActionTypes < ActiveRecord::Migration[6.1] + def change + create_table :ptu_action_types do |t| + t.string :name + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb index af23532..354a229 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,11 +10,17 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2021_04_06_235514) do +ActiveRecord::Schema.define(version: 2021_04_07_000858) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" + create_table "ptu_action_types", force: :cascade do |t| + t.string "name" + t.datetime "created_at", precision: 6, null: false + t.datetime "updated_at", precision: 6, null: false + end + create_table "ptu_frequencies", force: :cascade do |t| t.string "name" t.datetime "created_at", precision: 6, null: false diff --git a/db/seeds.rb b/db/seeds.rb index efd1ce7..6d2b152 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -12,3 +12,5 @@ ["Static", "At-Will", "EOT", "Scene", "Scene x2", "Scene x3", "Daily"].each do |name| PtuFrequency.find_or_create_by(name: name) end + +%w[Standard Shift Swift Free].each { |name| PtuActionType.find_or_create_by(name: name) } diff --git a/test/fixtures/ptu_action_types.yml b/test/fixtures/ptu_action_types.yml new file mode 100644 index 0000000..d17688e --- /dev/null +++ b/test/fixtures/ptu_action_types.yml @@ -0,0 +1,7 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: Free + +two: + name: Swift diff --git a/test/models/ptu_action_type_test.rb b/test/models/ptu_action_type_test.rb new file mode 100644 index 0000000..75cd823 --- /dev/null +++ b/test/models/ptu_action_type_test.rb @@ -0,0 +1,9 @@ +require "test_helper" + +class PtuActionTypeTest < ActiveSupport::TestCase + test "can create" do + assert_difference("PtuActionType.count", 1) do + PtuActionType.create(name: "Speedy") + end + end +end -- cgit v1.2.3