chore: remove description from school

This commit is contained in:
Nelson Jovel 2024-01-11 14:07:18 -08:00
parent 37fc891ff7
commit b92cdf979b
3 changed files with 4 additions and 11 deletions

View file

@ -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

View file

@ -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.
#

View file

@ -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"