Skip to content

Commit e18df07

Browse files
committed
changed database table type
1 parent eb48bd9 commit e18df07

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Path validation for retriving public view assets
88

99
### Changed
10+
- `token_secret` and `refresh_token` to text()
1011
- `page_config` variable to `pageConfig`
1112

1213
### Fixed

database/migrations/20180222064705_add_oauth.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ public function up()
5151
$table->integer('provider_id')->unsigned();
5252
$table->string('uid');
5353
$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();
5656
$table->timestamp('expires')->nullable();
5757
$table->timestamps();
5858
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');

0 commit comments

Comments
 (0)