Sha256: 2cabb153de472a7f1cc04d8ef04c274201d1d7954ec64955ff59a8f2eb0f7d99
Contents?: true
Size: 457 Bytes
Versions: 40
Compression:
Stored size: 457 Bytes
Contents
class CreateSccProducts < ActiveRecord::Migration[4.2] def change create_table :scc_products do |t| t.references :scc_account, index: true, foreign_key: true t.integer :scc_id, unique: true t.string :name, limit: 255 t.string :version, limit: 63 t.string :arch, limit: 31 t.string :friendly_name, limit: 255 t.string :description t.string :repositories t.timestamps null: false end end end
Version data entries
40 entries across 40 versions & 1 rubygems