Sha256: 5d30fd4325ac104a9769859c2a5b76a02cd0f6ae2fea779759a80c2d089e4313
Contents?: true
Size: 583 Bytes
Versions: 45
Compression:
Stored size: 583 Bytes
Contents
class CreateEcomCoreOvertimeSheetEntries < ActiveRecord::Migration[6.0] def change create_table :ecom_core_overtime_sheet_entries do |t| t.references :overtime_sheet, null: false, index: { name: 'ose_on_os_indx' }, foreign_key: { to_table: :ecom_core_overtime_sheets } t.references :crew, null: false, index: { name: 'ose_on_crew_indx' }, foreign_key: { to_table: :ecom_core_crews } t.float :total_overtime t.timestamps end end end
Version data entries
45 entries across 45 versions & 1 rubygems