mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-03-03 02:57:01 +00:00
Update schema for oauth_user_token Column
This commit is contained in:
@@ -27,7 +27,7 @@ return new class extends Migration {
|
||||
$table->string('oauth_user_token')->nullable()->change();
|
||||
});
|
||||
|
||||
// DB::statement('alter table users modify column oauth_user_token text');
|
||||
\DB::statement('alter table users modify column oauth_user_token text');
|
||||
|
||||
Schema::table('companies', function (Blueprint $table) {
|
||||
$table->integer('enabled_item_tax_rates')->default(0);
|
||||
|
||||
@@ -2287,7 +2287,7 @@ CREATE TABLE `users` (
|
||||
`failed_logins` smallint(6) DEFAULT NULL,
|
||||
`referral_code` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_id` varchar(100) DEFAULT NULL,
|
||||
`oauth_user_token` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_token` TEXT DEFAULT NULL,
|
||||
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||
`google_2fa_secret` text DEFAULT NULL,
|
||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||
|
||||
@@ -2287,7 +2287,7 @@ CREATE TABLE `users` (
|
||||
`failed_logins` smallint(6) DEFAULT NULL,
|
||||
`referral_code` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_id` varchar(100) DEFAULT NULL,
|
||||
`oauth_user_token` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_token` TEXT DEFAULT NULL,
|
||||
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||
`google_2fa_secret` text DEFAULT NULL,
|
||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||
|
||||
@@ -2287,7 +2287,7 @@ CREATE TABLE `users` (
|
||||
`failed_logins` smallint(6) DEFAULT NULL,
|
||||
`referral_code` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_id` varchar(100) DEFAULT NULL,
|
||||
`oauth_user_token` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_token` TEXT DEFAULT NULL,
|
||||
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||
`google_2fa_secret` text DEFAULT NULL,
|
||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||
|
||||
@@ -2286,7 +2286,7 @@ CREATE TABLE `users` (
|
||||
`failed_logins` smallint(6) DEFAULT NULL,
|
||||
`referral_code` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_id` varchar(100) DEFAULT NULL,
|
||||
`oauth_user_token` varchar(191) DEFAULT NULL,
|
||||
`oauth_user_token` TEXT DEFAULT NULL,
|
||||
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||
`google_2fa_secret` text DEFAULT NULL,
|
||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||
|
||||
Reference in New Issue
Block a user