You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/migrate/20191112012007_create_hack_...

15 lines
294 B

5 years ago
class CreateHackUserDebugs < ActiveRecord::Migration[5.2]
def change
create_table :hack_user_debugs do |t|
t.references :user
t.references :hack
t.text :output
t.text :input
t.text :error_msg
t.integer :error_line
t.timestamps
end
end
end