Sha256: 80cdf073443fa96d8a301fd86a649efddedd109b8d87dafc1483c7a09cd8ecb5
Contents?: true
Size: 531 Bytes
Versions: 8
Compression:
Stored size: 531 Bytes
Contents
class CreateSccRepositories < ActiveRecord::Migration 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
8 entries across 8 versions & 1 rubygems