File tree 1 file changed +1
-1
lines changed 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ private static function _tables()
30
30
'grant_type ' => Schema::TYPE_SMALLINT ,
31
31
'created_at ' => Schema::TYPE_INTEGER . ' UNSIGNED NOT NULL ' ,
32
32
'updated_at ' => Schema::TYPE_INTEGER . ' UNSIGNED NOT NULL ' ,
33
- 'expired_at ' => Schema::TYPE_INTEGER . ' UNSIGNED NOT NULL ' ,
34
33
'status ' => Schema::TYPE_SMALLINT . ' NOT NULL DEFAULT 1 ' , // Active,
35
34
'KEY (token_type) ' ,
36
35
'KEY (grant_type) ' ,
@@ -46,6 +45,7 @@ private static function _tables()
46
45
'mac_algorithm ' => Schema::TYPE_SMALLINT ,
47
46
'created_at ' => Schema::TYPE_INTEGER . ' UNSIGNED NOT NULL ' ,
48
47
'updated_at ' => Schema::TYPE_INTEGER . ' UNSIGNED NOT NULL ' ,
48
+ 'expired_at ' => Schema::TYPE_INTEGER . ' UNSIGNED NOT NULL ' ,
49
49
'status ' => Schema::TYPE_SMALLINT . ' NOT NULL DEFAULT 1 ' , // Active,
50
50
'FOREIGN KEY (client_id) REFERENCES {{%auth__client}} (id) ON DELETE CASCADE ON UPDATE CASCADE ' ,
51
51
'KEY (type) ' ,
You can’t perform that action at this time.
0 commit comments