Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
scrapbook / db / migrate / 20160602220243_create_scrapbook_masters.rb
Size: Mime:
class CreateScrapbookMasters < ActiveRecord::Migration[5.0]
  def change
    create_table :scrapbook_masters do |t|
      t.attachment :file
      t.string :title

      # Metadata
      t.string :alt_text
      t.string :copyright
      t.string :source
      t.text :caption
      t.text :notes
      t.datetime :taken_on

      t.timestamps
    end
  end
end