dev_local
cxt 5 years ago
parent 6a3146733f
commit 9bd89990d7

@ -1,35 +1,35 @@
class CreateOauths < ActiveRecord::Migration class CreateOauths < ActiveRecord::Migration
def change def change
create_table :oauths do |t| # create_table :oauths do |t|
t.string :client_id # t.string :client_id
t.string :client_secret # t.string :client_secret
t.string :code # t.string :code
t.string :redirect_uri # t.string :redirect_uri
t.string :scope # t.string :scope
#
t.string :access_token # t.string :access_token
t.string :refresh_token # t.string :refresh_token
t.integer :token_created_at # t.integer :token_created_at
t.integer :token_expires_in #过期时间 # t.integer :token_expires_in #过期时间
#
t.timestamps # t.timestamps
end # end
#
#
add_column :oauths, :user_id, :integer, default: 0 # add_column :oauths, :user_id, :integer, default: 0
#
add_index :oauths, :user_id # add_index :oauths, :user_id
#
#
create_table :oauth_configs do |t| # create_table :oauth_configs do |t|
t.string :client_id # t.string :client_id
t.string :client_secret # t.string :client_secret
t.string :redirect_uri # t.string :redirect_uri
t.string :scope # t.string :scope
#
t.timestamps # t.timestamps
end # end
# OauthConfig.create( # OauthConfig.create(

Loading…
Cancel
Save