|
10 | 10 | # |
11 | 11 | # It's strongly recommended that you check this file into your version control system. |
12 | 12 |
|
13 | | -ActiveRecord::Schema.define(version: 2025_10_20_054238) do |
| 13 | +ActiveRecord::Schema.define(version: 2025_11_11_135930) do |
14 | 14 |
|
15 | 15 | create_table "action_text_rich_texts", force: :cascade do |t| |
16 | 16 | t.string "name", null: false |
|
83 | 83 | t.index ["user_id"], name: "index_contacts_on_user_id" |
84 | 84 | end |
85 | 85 |
|
| 86 | + create_table "curations", force: :cascade do |t| |
| 87 | + t.integer "name_id", null: false |
| 88 | + t.integer "user_id", null: false |
| 89 | + t.integer "kind_int", null: false |
| 90 | + t.integer "status_int", default: 0 |
| 91 | + t.text "notes" |
| 92 | + t.datetime "created_at", precision: 6, null: false |
| 93 | + t.datetime "updated_at", precision: 6, null: false |
| 94 | + t.index ["name_id"], name: "index_curations_on_name_id" |
| 95 | + t.index ["user_id"], name: "index_curations_on_user_id" |
| 96 | + end |
| 97 | + |
86 | 98 | create_table "generic_type_materials", force: :cascade do |t| |
87 | 99 | t.string "text", null: false |
88 | 100 | t.datetime "created_at", precision: 6, null: false |
|
517 | 529 | add_foreign_key "contacts", "authors" |
518 | 530 | add_foreign_key "contacts", "publications" |
519 | 531 | add_foreign_key "contacts", "users" |
| 532 | + add_foreign_key "curations", "names" |
| 533 | + add_foreign_key "curations", "users" |
520 | 534 | add_foreign_key "genome_sequencing_experiments", "genomes" |
521 | 535 | add_foreign_key "genome_sequencing_experiments", "sequencing_experiments" |
522 | 536 | add_foreign_key "genomes", "strains" |
|
0 commit comments