10 lines
176 B
Ruby
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
|