Skip to content

Instantly share code, notes, and snippets.

@elorest
Created April 25, 2018 20:01
Show Gist options
  • Save elorest/3f7240592c722890170b6090b5c3cbf5 to your computer and use it in GitHub Desktop.
Save elorest/3f7240592c722890170b6090b5c3cbf5 to your computer and use it in GitHub Desktop.
# == Schema Information
#
# Table name: images
#
# id :integer not null, primary key
# file :string(255)
# category :string(255)
# tank_configuration_id :integer
# created_at :datetime
# updated_at :datetime
#
class Image < ActiveRecord::Base
belongs_to :tank_configuration
mount_uploader :file, ImageUploader
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment