diff --git a/db/migrate/20240104174053_create_dashboard_schools.rb b/db/migrate/20240104174053_create_dashboard_schools.rb index 45814c5..129eeec 100644 --- a/db/migrate/20240104174053_create_dashboard_schools.rb +++ b/db/migrate/20240104174053_create_dashboard_schools.rb @@ -3,7 +3,6 @@ class CreateDashboardSchools < ActiveRecord::Migration[7.1] create_table :dashboard_schools do |t| t.string :name t.references :dashboard_district, null: false, foreign_key: true - t.text :description t.string :slug t.integer :qualtrics_code t.integer :dese_id diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb index 58b88f0..8b96562 100644 --- a/spec/dummy/config/application.rb +++ b/spec/dummy/config/application.rb @@ -14,6 +14,8 @@ require "action_view/railtie" require "action_cable/engine" # require "rails/test_unit/railtie" +require "csv" + # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) @@ -28,7 +30,7 @@ module Dummy # Please, add to the `ignore` list any other `lib` subdirectories that do # not contain `.rb` files, or that should not be reloaded or eager loaded. # Common ones are `templates`, `generators`, or `middleware`, for example. - config.autoload_lib(ignore: %w(assets tasks)) + config.autoload_lib(ignore: %w[assets tasks]) # Configuration for the application, engines, and railties goes here. # diff --git a/spec/dummy/db/schema.rb b/spec/dummy/db/schema.rb index a9d8770..9236683 100644 --- a/spec/dummy/db/schema.rb +++ b/spec/dummy/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2024_01_04_192128) do +ActiveRecord::Schema[7.1].define(version: 2024_01_11_215666) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -72,13 +72,6 @@ ActiveRecord::Schema[7.1].define(version: 2024_01_04_192128) do t.datetime "updated_at", null: false end - create_table "dashboard_examples", force: :cascade do |t| - t.string "text" - t.text "body" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - create_table "dashboard_genders", force: :cascade do |t| t.integer "qualtrics_code" t.string "designation" @@ -160,7 +153,6 @@ ActiveRecord::Schema[7.1].define(version: 2024_01_04_192128) do create_table "dashboard_schools", force: :cascade do |t| t.string "name" t.bigint "dashboard_district_id", null: false - t.text "description" t.string "slug" t.integer "qualtrics_code" t.integer "dese_id"