表更改
This commit is contained in:
parent
77d2f3ac17
commit
ecbdfcf1ed
|
@ -1,18 +0,0 @@
|
||||||
class CreateOauth < ActiveRecord::Migration
|
|
||||||
def change
|
|
||||||
create_table :oauth do |t|
|
|
||||||
t.string :client_id
|
|
||||||
t.string :client_secret
|
|
||||||
t.string :code
|
|
||||||
t.string :redirect_uri
|
|
||||||
t.string :scope
|
|
||||||
|
|
||||||
t.string :access_token
|
|
||||||
t.string :refresh_token
|
|
||||||
t.integer :token_created_at
|
|
||||||
t.integer :token_expires_in #过期时间
|
|
||||||
|
|
||||||
t.timestamps
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,5 +1,22 @@
|
||||||
class AddUserIdToOauths < ActiveRecord::Migration
|
class AddUserIdToOauths < ActiveRecord::Migration
|
||||||
def change
|
def change
|
||||||
|
|
||||||
|
create_table :oauths do |t|
|
||||||
|
t.string :client_id
|
||||||
|
t.string :client_secret
|
||||||
|
t.string :code
|
||||||
|
t.string :redirect_uri
|
||||||
|
t.string :scope
|
||||||
|
|
||||||
|
t.string :access_token
|
||||||
|
t.string :refresh_token
|
||||||
|
t.integer :token_created_at
|
||||||
|
t.integer :token_expires_in #过期时间
|
||||||
|
|
||||||
|
t.timestampss
|
||||||
|
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
|
||||||
|
|
Loading…
Reference in New Issue