File size: 342 Bytes
def1299
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateSubmissions < ActiveRecord::Migration[5.0]
  def change
    create_table :submissions do |t|
      t.text :source_code
      t.integer :language_id
      t.text :input
      t.text :expected_output
      t.text :actual_output
      t.integer :status_id
      t.datetime :created_at
      t.datetime :finished_at
    end
  end
end