Skip to content

Commit 8afcf2a

Browse files
fixed migration
1 parent fbbad28 commit 8afcf2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

migrations/m240112_231411_create_user_settings_config_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Handles the creation of table `user_settings_config`.
77
*/
8-
class m240112_201411_create_user_settings_config_table extends Migration
8+
class m240112_231411_create_user_settings_config_table extends Migration
99
{
1010
public function up()
1111
{
@@ -17,7 +17,7 @@ public function up()
1717
'code' => $this->string(255)->notNull(),
1818
'type' => $this->integer(),
1919
'access_level' => $this->integer(),
20-
'values' => $this->text,
20+
'values' => $this->text()
2121
]
2222
);
2323

0 commit comments

Comments
 (0)