Files
codeocean/db/migrate/20160204094409_create_code_harbor_links.rb

10 lines
176 B
Ruby

class CreateCodeHarborLinks < ActiveRecord::Migration
def change
create_table :code_harbor_links do |t|
t.string :oauth2token
t.timestamps
end
end
end