why the fuck was this set to text
This commit is contained in:
parent
a1ff24510e
commit
db22b830cf
1 changed files with 3 additions and 3 deletions
|
@ -14,13 +14,13 @@ class RestructurePermissions extends Migration
|
|||
$schema = DB::getSchemaBuilder();
|
||||
|
||||
$schema->table('users', function (Blueprint $table) {
|
||||
$table->text('user_activated')
|
||||
$table->boolean('user_activated')
|
||||
->default(0);
|
||||
|
||||
$table->text('user_verified')
|
||||
$table->boolean('user_verified')
|
||||
->default(0);
|
||||
|
||||
$table->text('user_restricted')
|
||||
$table->boolean('user_restricted')
|
||||
->default(0);
|
||||
});
|
||||
|
||||
|
|
Reference in a new issue