Sha256: 73ab0c075660b68eec18e2e1e2353c4a6829ec19c23db031dc9a26644df3c52c
Contents?: true
Size: 345 Bytes
Versions: 23
Compression:
Stored size: 345 Bytes
Contents
class CreatePrintables < ActiveRecord::Migration def change create_table :printables do |t| t.references :account, null: false, index: true t.references :printer, index: true t.references :printable, polymorphic: true, index: true t.string :template t.boolean :preferred t.timestamps end end end
Version data entries
23 entries across 23 versions & 1 rubygems