Files
codeocean/db/migrate/20160204094409_create_code_harbor_links.rb
2021-05-14 22:03:06 +02:00

12 lines
212 B
Ruby

# frozen_string_literal: true
class CreateCodeHarborLinks < ActiveRecord::Migration[4.2]
def change
create_table :code_harbor_links do |t|
t.string :oauth2token
t.timestamps
end
end
end