Sha256: 5cbbe18cf240cb03b7e69e7fe957a85d47d12d40a6929b3ebd3bb702bc4ed3bf

Contents?: true

Size: 1.02 KB

Versions: 36

Compression:

Stored size: 1.02 KB

Contents

class CreateEcomCoreCrewOvertimes < ActiveRecord::Migration[6.0]
  def change
    create_table :ecom_core_crew_overtimes do |t|
      t.float :raw_hours, null: false
      t.float :hours, null: false, default: 0
      t.string :remark
      t.references :overtime_type,
                   null: false,
                   index: { name: 'ot_on_co_indx' },
                   foreign_key: { to_table: :ecom_core_overtime_types }
      t.references :overtime_sheet_entry,
                   null: false,
                   index: { name: 'ose_on_co_indx' },
                   foreign_key: { to_table: :ecom_core_overtime_sheet_entries }
      t.boolean :revised, null: false, default: false
      t.references :revision_to,
                   null: true,
                   foreign_key: { to_table: :ecom_core_crew_overtimes }
      t.references :created_by,
                   null: false,
                   index: { name: 'cb_on_co_indx' },
                   foreign_key: { to_table: :ecom_core_users }

      t.timestamps
    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
ecom_core-1.3.5 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.3.4 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.3.3 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.3.2 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.3.1 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.3.0 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.36 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.35 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.34 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.33 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.32 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.31 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.30 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.29 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.28 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.27 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.26 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.25 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.24 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb
ecom_core-1.2.23 db/migrate/20200410111827_create_ecom_core_crew_overtimes.rb