Skip to content

Commit 089de23

Browse files
committed
Make access_token_secret nullable
For now this column is not being used. It is mainly for other social providers that might be added in the future so it could be erased all together or made NULL by default.
1 parent 2569c6d commit 089de23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/database/migrations/2013_11_13_222813_create_profiles_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function up()
2222
$table->string('description')->nullable()->default(NULL);
2323
$table->string('image_url')->nullable()->default(NULL);
2424
$table->string('access_token')->nullable()->default(NULL);
25-
$table->string('access_token_secret');
25+
$table->string('access_token_secret')->nullable()->default(NULL);
2626
$table->timestamps();
2727

2828
$table->foreign('user_id')

0 commit comments

Comments
 (0)