Add & Display Flights

This commit is contained in:
2022-01-15 16:05:31 -05:00
parent 796a070af4
commit 022b63fc1a
26 changed files with 395 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
class CreateEngines < ActiveRecord::Migration[5.2]
def change
create_table :engines do |t|
t.references :aircraft, foreign_key: true
t.date :oil_date
t.float :oil_tach
t.date :major_date
t.float :major_tach
t.date :top_date
t.float :top_tach
t.timestamps
end
end
end