Sha256: cb2211c2e1d23e4644c05940ecef7f4bd7979017c29df9f98bfcadce22e0bcfd
Contents?: true
Size: 393 Bytes
Versions: 68
Compression:
Stored size: 393 Bytes
Contents
# frozen_string_literal: true # :reek:FeatureEnvy # Fields for JanusInstance model class CreateRubyRabbitmqJanusTables < ActiveRecord::Migration[5.0] def change create_table :janus_instances, id: false, force: true do |table| table.string :id, null: false table.integer :session, limit: 8 table.boolean :enable table.integer :thread, limit: 8 end end end
Version data entries
68 entries across 68 versions & 1 rubygems