diaspora/db/migrate/20150613202109_create_o_auth_applications.rb
2016-01-04 16:45:21 +09:00

10 lines
220 B
Ruby

class CreateOAuthApplications < ActiveRecord::Migration
def change
create_table :o_auth_applications do |t|
t.string :client_id
t.string :client_secret
t.timestamps null: false
end
end
end