Sha256: eb79b430570d5eb47b17ebd16c34a22b19124a2742e1cb082dbcaf8cdf5624a9

Contents?: true

Size: 280 Bytes

Versions: 1

Compression:

Stored size: 280 Bytes

Contents

class CreateStaffingPositions < ActiveRecord::Migration
  def change
    unless table_exists?(:staffing_positions)
      create_table :staffing_positions do |t|
        t.string :internal_identifier
        t.text   :custom_fields
        t.timestamps
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
erp_work_effort-4.2.0 db/migrate/20150227174108_create_staffing_positions.rb