Sha256: fb99556b4aef5d576c60430adffc7e0d134293823aead09f615d36e67d8800a8

Contents?: true

Size: 315 Bytes

Versions: 1

Compression:

Stored size: 315 Bytes

Contents

class CreateApptAppointmentTypes < ActiveRecord::Migration
  def change
    create_table :appt_appointment_types do |t|
      t.string :name, null: false
      t.integer :duration_minutes
      t.integer :before_minutes
      t.integer :after_minutes

      t.timestamps null: false
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
appt-0.0.1.beta.3 db/migrate/20150804234748_create_appt_appointment_types.rb