Files
nairobi/db/migrate/20210422104400_create_machine_learning_jobs.rb
2021-08-16 16:31:04 +02:00

15 lines
330 B
Ruby

class CreateMachineLearningJobs < ActiveRecord::Migration[5.2]
def change
create_table :machine_learning_jobs do |t|
t.datetime :started_at
t.datetime :finished_at
t.string :script
t.integer :pid
t.string :error
t.references :user, foreign_key: true
t.timestamps
end
end
end