Sha256: 10b4e1f46c18aec12c560331e510c5126a4717e7a0ac0659af61e8a20a340f43
Contents?: true
Size: 530 Bytes
Versions: 23
Compression:
Stored size: 530 Bytes
Contents
class CreatePrintJobs < ActiveRecord::Migration def change create_table :print_jobs do |t| t.references :account, null: false, index: true t.references :printer, index: true t.integer :printed_by_id t.string :printed_by_type t.string :view_template_path t.string :name t.string :printing_class t.string :print_driver t.string :print_format t.string :state t.string :paper t.integer :copies t.text :print_sql t.timestamps end end end
Version data entries
23 entries across 23 versions & 1 rubygems