Update schema for oauth_user_token Column
This commit is contained in:
parent
ce1149ffda
commit
a933986221
|
|
@ -27,7 +27,7 @@ return new class extends Migration {
|
||||||
$table->string('oauth_user_token')->nullable()->change();
|
$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) {
|
Schema::table('companies', function (Blueprint $table) {
|
||||||
$table->integer('enabled_item_tax_rates')->default(0);
|
$table->integer('enabled_item_tax_rates')->default(0);
|
||||||
|
|
|
||||||
|
|
@ -2287,7 +2287,7 @@ CREATE TABLE `users` (
|
||||||
`failed_logins` smallint(6) DEFAULT NULL,
|
`failed_logins` smallint(6) DEFAULT NULL,
|
||||||
`referral_code` varchar(191) DEFAULT NULL,
|
`referral_code` varchar(191) DEFAULT NULL,
|
||||||
`oauth_user_id` varchar(100) 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,
|
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||||
`google_2fa_secret` text DEFAULT NULL,
|
`google_2fa_secret` text DEFAULT NULL,
|
||||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||||
|
|
|
||||||
|
|
@ -2287,7 +2287,7 @@ CREATE TABLE `users` (
|
||||||
`failed_logins` smallint(6) DEFAULT NULL,
|
`failed_logins` smallint(6) DEFAULT NULL,
|
||||||
`referral_code` varchar(191) DEFAULT NULL,
|
`referral_code` varchar(191) DEFAULT NULL,
|
||||||
`oauth_user_id` varchar(100) 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,
|
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||||
`google_2fa_secret` text DEFAULT NULL,
|
`google_2fa_secret` text DEFAULT NULL,
|
||||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||||
|
|
|
||||||
|
|
@ -2287,7 +2287,7 @@ CREATE TABLE `users` (
|
||||||
`failed_logins` smallint(6) DEFAULT NULL,
|
`failed_logins` smallint(6) DEFAULT NULL,
|
||||||
`referral_code` varchar(191) DEFAULT NULL,
|
`referral_code` varchar(191) DEFAULT NULL,
|
||||||
`oauth_user_id` varchar(100) 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,
|
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||||
`google_2fa_secret` text DEFAULT NULL,
|
`google_2fa_secret` text DEFAULT NULL,
|
||||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||||
|
|
|
||||||
|
|
@ -2286,7 +2286,7 @@ CREATE TABLE `users` (
|
||||||
`failed_logins` smallint(6) DEFAULT NULL,
|
`failed_logins` smallint(6) DEFAULT NULL,
|
||||||
`referral_code` varchar(191) DEFAULT NULL,
|
`referral_code` varchar(191) DEFAULT NULL,
|
||||||
`oauth_user_id` varchar(100) 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,
|
`oauth_provider_id` varchar(191) DEFAULT NULL,
|
||||||
`google_2fa_secret` text DEFAULT NULL,
|
`google_2fa_secret` text DEFAULT NULL,
|
||||||
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
`accepted_terms_version` varchar(191) DEFAULT NULL,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue