File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 7
7
- Path validation for retriving public view assets
8
8
9
9
### Changed
10
+ - ` token_secret ` and ` refresh_token ` to text()
10
11
- ` page_config ` variable to ` pageConfig `
11
12
12
13
### Fixed
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ public function up()
51
51
$ table ->integer ('provider_id ' )->unsigned ();
52
52
$ table ->string ('uid ' );
53
53
$ table ->text ('access_token ' );
54
- $ table ->string ('token_secret ' )->nullable ();
55
- $ table ->string ('refresh_token ' )->nullable ();
54
+ $ table ->text ('token_secret ' )->nullable ();
55
+ $ table ->text ('refresh_token ' )->nullable ();
56
56
$ table ->timestamp ('expires ' )->nullable ();
57
57
$ table ->timestamps ();
58
58
$ table ->foreign ('user_id ' )->references ('id ' )->on ('users ' )->onDelete ('cascade ' );
You can’t perform that action at this time.
0 commit comments