Skip to content

Commit 7130b24

Browse files
committed
Integer to string
1 parent 68e9146 commit 7130b24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "mblode/sprout-forms-tables",
33
"description": "Tables Field for Sprout Forms",
44
"type": "craft-plugin",
5-
"version": "1.0.8",
5+
"version": "1.0.9",
66
"keywords": [
77
"craft",
88
"cms",

src/integrations/sproutforms/fields/Table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static function displayName(): string
4646
*/
4747
public function getContentColumnType(): string
4848
{
49-
return Schema::TYPE_INTEGER;
49+
return Schema::TYPE_TEXT;
5050
}
5151

5252
/**
@@ -142,7 +142,7 @@ public function rules()
142142
$rules[] = [['size'], 'integer'];
143143
return $rules;
144144
}
145-
145+
146146
/**
147147
* @inheritdoc
148148
*/

0 commit comments

Comments
 (0)