mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
chore: remove description from school
This commit is contained in:
parent
37fc891ff7
commit
b92cdf979b
3 changed files with 4 additions and 11 deletions
|
|
@ -3,7 +3,6 @@ class CreateDashboardSchools < ActiveRecord::Migration[7.1]
|
||||||
create_table :dashboard_schools do |t|
|
create_table :dashboard_schools do |t|
|
||||||
t.string :name
|
t.string :name
|
||||||
t.references :dashboard_district, null: false, foreign_key: true
|
t.references :dashboard_district, null: false, foreign_key: true
|
||||||
t.text :description
|
|
||||||
t.string :slug
|
t.string :slug
|
||||||
t.integer :qualtrics_code
|
t.integer :qualtrics_code
|
||||||
t.integer :dese_id
|
t.integer :dese_id
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,8 @@ require "action_view/railtie"
|
||||||
require "action_cable/engine"
|
require "action_cable/engine"
|
||||||
# require "rails/test_unit/railtie"
|
# require "rails/test_unit/railtie"
|
||||||
|
|
||||||
|
require "csv"
|
||||||
|
|
||||||
# Require the gems listed in Gemfile, including any gems
|
# Require the gems listed in Gemfile, including any gems
|
||||||
# you've limited to :test, :development, or :production.
|
# you've limited to :test, :development, or :production.
|
||||||
Bundler.require(*Rails.groups)
|
Bundler.require(*Rails.groups)
|
||||||
|
|
@ -28,7 +30,7 @@ module Dummy
|
||||||
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
# 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.
|
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
||||||
# Common ones are `templates`, `generators`, or `middleware`, for example.
|
# 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.
|
# Configuration for the application, engines, and railties goes here.
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# 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
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
|
||||||
|
|
@ -72,13 +72,6 @@ ActiveRecord::Schema[7.1].define(version: 2024_01_04_192128) do
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
end
|
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|
|
create_table "dashboard_genders", force: :cascade do |t|
|
||||||
t.integer "qualtrics_code"
|
t.integer "qualtrics_code"
|
||||||
t.string "designation"
|
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|
|
create_table "dashboard_schools", force: :cascade do |t|
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.bigint "dashboard_district_id", null: false
|
t.bigint "dashboard_district_id", null: false
|
||||||
t.text "description"
|
|
||||||
t.string "slug"
|
t.string "slug"
|
||||||
t.integer "qualtrics_code"
|
t.integer "qualtrics_code"
|
||||||
t.integer "dese_id"
|
t.integer "dese_id"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue