diff --git a/app/models/create.rb b/app/models/create.rb index b7509978e4..e2e3025ff3 100644 --- a/app/models/create.rb +++ b/app/models/create.rb @@ -26,4 +26,5 @@ def reindex # created_at :datetime not null # updated_at :datetime not null # create_type_id :bigint +# name :text # diff --git a/app/models/produce.rb b/app/models/produce.rb index 530f639f53..ef9b83f39d 100644 --- a/app/models/produce.rb +++ b/app/models/produce.rb @@ -27,4 +27,5 @@ def reindex # created_at :datetime not null # updated_at :datetime not null # produce_type_id :bigint +# name :text # diff --git a/app/models/realize.rb b/app/models/realize.rb index f969a530f4..2d8c96c369 100644 --- a/app/models/realize.rb +++ b/app/models/realize.rb @@ -26,4 +26,5 @@ def reindex # created_at :datetime not null # updated_at :datetime not null # realize_type_id :bigint +# name :text # diff --git a/db/schema.rb b/db/schema.rb index fc1f411ef7..2707495528 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2023_10_28_035847) do +ActiveRecord::Schema.define(version: 2023_10_30_062425) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -458,6 +458,7 @@ t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.bigint "create_type_id" + t.text "name" t.index ["agent_id"], name: "index_creates_on_agent_id" t.index ["work_id", "agent_id"], name: "index_creates_on_work_id_and_agent_id", unique: true end @@ -1265,6 +1266,7 @@ t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.bigint "produce_type_id" + t.text "name" t.index ["agent_id"], name: "index_produces_on_agent_id" t.index ["manifestation_id", "agent_id"], name: "index_produces_on_manifestation_id_and_agent_id", unique: true end @@ -1331,6 +1333,7 @@ t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.bigint "realize_type_id" + t.text "name" t.index ["agent_id"], name: "index_realizes_on_agent_id" t.index ["expression_id", "agent_id"], name: "index_realizes_on_expression_id_and_agent_id", unique: true end diff --git a/spec/factories/creates.rb b/spec/factories/creates.rb index bcb756dc13..578c8c94eb 100644 --- a/spec/factories/creates.rb +++ b/spec/factories/creates.rb @@ -17,4 +17,5 @@ # created_at :datetime not null # updated_at :datetime not null # create_type_id :bigint +# name :text # diff --git a/spec/factories/produces.rb b/spec/factories/produces.rb index f43ffc1953..5a60c19e52 100644 --- a/spec/factories/produces.rb +++ b/spec/factories/produces.rb @@ -16,4 +16,5 @@ # created_at :datetime not null # updated_at :datetime not null # produce_type_id :bigint +# name :text # diff --git a/spec/factories/realizes.rb b/spec/factories/realizes.rb index ea32d06ba2..efbc0894c0 100644 --- a/spec/factories/realizes.rb +++ b/spec/factories/realizes.rb @@ -16,4 +16,5 @@ # created_at :datetime not null # updated_at :datetime not null # realize_type_id :bigint +# name :text # diff --git a/spec/fixtures/creates.yml b/spec/fixtures/creates.yml index f19af561eb..ab9baeea1c 100644 --- a/spec/fixtures/creates.yml +++ b/spec/fixtures/creates.yml @@ -62,4 +62,5 @@ create_00104: # created_at :datetime not null # updated_at :datetime not null # create_type_id :bigint +# name :text # diff --git a/spec/fixtures/produces.yml b/spec/fixtures/produces.yml index c9ff5f3e46..e861f25c55 100644 --- a/spec/fixtures/produces.yml +++ b/spec/fixtures/produces.yml @@ -146,4 +146,5 @@ produce_00202: # created_at :datetime not null # updated_at :datetime not null # produce_type_id :bigint +# name :text # diff --git a/spec/fixtures/realizes.yml b/spec/fixtures/realizes.yml index dcf98ab3c3..b69b2708c6 100644 --- a/spec/fixtures/realizes.yml +++ b/spec/fixtures/realizes.yml @@ -83,4 +83,5 @@ realize_00010: # created_at :datetime not null # updated_at :datetime not null # realize_type_id :bigint +# name :text # diff --git a/spec/models/create_spec.rb b/spec/models/create_spec.rb index 5f1a874091..30a5e88c54 100644 --- a/spec/models/create_spec.rb +++ b/spec/models/create_spec.rb @@ -16,4 +16,5 @@ # created_at :datetime not null # updated_at :datetime not null # create_type_id :bigint +# name :text # diff --git a/spec/models/produce_spec.rb b/spec/models/produce_spec.rb index a1ea2fb053..988d917f25 100644 --- a/spec/models/produce_spec.rb +++ b/spec/models/produce_spec.rb @@ -16,4 +16,5 @@ # created_at :datetime not null # updated_at :datetime not null # produce_type_id :bigint +# name :text # diff --git a/spec/models/realize_spec.rb b/spec/models/realize_spec.rb index b858c6fd61..2e1f0c06c1 100644 --- a/spec/models/realize_spec.rb +++ b/spec/models/realize_spec.rb @@ -16,4 +16,5 @@ # created_at :datetime not null # updated_at :datetime not null # realize_type_id :bigint +# name :text #