Skip to content

Commit

Permalink
update annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeta committed Dec 30, 2019
1 parent f5111cd commit cfda4ec
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 20 deletions.
11 changes: 4 additions & 7 deletions app/models/inventory_file.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,11 @@ def found_items
#
# Table name: inventory_files
#
# id :integer not null, primary key
# filename :string
# content_type :string
# size :integer
# user_id :integer
# id :bigint not null, primary key
# user_id :bigint
# note :text
# created_at :datetime
# updated_at :datetime
# created_at :datetime not null
# updated_at :datetime not null
# inventory_file_name :string
# inventory_content_type :string
# inventory_file_size :integer
Expand Down
11 changes: 4 additions & 7 deletions spec/models/inventory_file_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@
#
# Table name: inventory_files
#
# id :integer not null, primary key
# filename :string
# content_type :string
# size :integer
# user_id :integer
# id :bigint not null, primary key
# user_id :bigint
# note :text
# created_at :datetime
# updated_at :datetime
# created_at :datetime not null
# updated_at :datetime not null
# inventory_file_name :string
# inventory_content_type :string
# inventory_file_size :integer
Expand Down
14 changes: 8 additions & 6 deletions spec/models/inventory_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
#
# Table name: inventories
#
# id :integer not null, primary key
# item_id :integer
# inventory_file_id :integer
# note :text
# created_at :datetime
# updated_at :datetime
# id :bigint not null, primary key
# item_id :bigint
# inventory_file_id :bigint
# note :text
# created_at :datetime not null
# updated_at :datetime not null
# item_identifier :string not null
# current_shelf_name :string not null
#

0 comments on commit cfda4ec

Please sign in to comment.