Skip to content

Commit 362c8e2

Browse files
committed
rake db:migrate
1 parent 1acfa53 commit 362c8e2

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

app/models/emancipation_option.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class EmancipationOption < ApplicationRecord
2828
#
2929
# Indexes
3030
#
31-
# index_emancipation_options_on_emancipation_category_id (emancipation_category_id)
3231
# index_emancipation_options_on_emancipation_category_id_and_name (emancipation_category_id,name) UNIQUE
3332
#
3433
# Foreign Keys

app/models/user_language.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class UserLanguage < ApplicationRecord
1717
#
1818
# Indexes
1919
#
20-
# index_user_languages_on_language_id (language_id)
2120
# index_user_languages_on_language_id_and_user_id (language_id,user_id) UNIQUE
2221
# index_user_languages_on_user_id (user_id)
2322
#

db/schema.rb

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema[7.2].define(version: 2025_02_08_160513) do
13+
ActiveRecord::Schema[7.2].define(version: 2025_03_31_033441) do
1414
# These are extensions that must be enabled in order to support this database
1515
enable_extension "pg_stat_statements"
1616
enable_extension "plpgsql"
@@ -344,7 +344,6 @@
344344
t.datetime "created_at", null: false
345345
t.datetime "updated_at", null: false
346346
t.index ["emancipation_category_id", "name"], name: "index_emancipation_options_on_emancipation_category_id_and_name", unique: true
347-
t.index ["emancipation_category_id"], name: "index_emancipation_options_on_emancipation_category_id"
348347
end
349348

350349
create_table "flipper_features", force: :cascade do |t|
@@ -641,7 +640,6 @@
641640
t.datetime "created_at", null: false
642641
t.datetime "updated_at", null: false
643642
t.index ["language_id", "user_id"], name: "index_user_languages_on_language_id_and_user_id", unique: true
644-
t.index ["language_id"], name: "index_user_languages_on_language_id"
645643
t.index ["user_id"], name: "index_user_languages_on_user_id"
646644
end
647645

@@ -740,14 +738,14 @@
740738
add_foreign_key "learning_hour_types", "casa_orgs"
741739
add_foreign_key "learning_hours", "learning_hour_types"
742740
add_foreign_key "learning_hours", "users"
743-
add_foreign_key "mileage_rates", "casa_orgs", validate: false
741+
add_foreign_key "mileage_rates", "casa_orgs"
744742
add_foreign_key "mileage_rates", "users"
745-
add_foreign_key "notes", "users", column: "creator_id", validate: false
743+
add_foreign_key "notes", "users", column: "creator_id"
746744
add_foreign_key "other_duties", "users", column: "creator_id"
747745
add_foreign_key "patch_notes", "patch_note_groups"
748746
add_foreign_key "patch_notes", "patch_note_types"
749747
add_foreign_key "placement_types", "casa_orgs"
750-
add_foreign_key "placements", "casa_cases", validate: false
748+
add_foreign_key "placements", "casa_cases"
751749
add_foreign_key "placements", "placement_types"
752750
add_foreign_key "placements", "users", column: "creator_id"
753751
add_foreign_key "preference_sets", "users"

0 commit comments

Comments
 (0)