Sha256: 3c6be7a325cbbd201b89c8b1895a8d0b99fdcde0b5ec4c429f736a3257664b5a
Contents?: true
Size: 536 Bytes
Versions: 40
Compression:
Stored size: 536 Bytes
Contents
class CreateSccRepositories < ActiveRecord::Migration[4.2] def change create_table :scc_repositories do |t| t.references :scc_account, index: true, foreign_key: true t.integer :scc_id, unique: true t.string :name, limit: 255 t.string :distro_target, limit: 255 t.string :description, limit: 255 t.string :url, limit: 255 t.string :token, limit: 255 t.boolean :enabled t.boolean :autorefresh t.boolean :installer_updates t.timestamps null: false end end end
Version data entries
40 entries across 40 versions & 1 rubygems