I have created a table using record/save API, The table has a column with text type. the value of the column is greater then 256, so its getting truncated. So what i did was i altered the table manually through pg admin. And then when i try to save another record. it fails with following error
{'error': {'code': 114, 'message': 'conflicting schema {TypeUnknown {0 <nil>} character varying(512)} => {TypeString {0 <nil>} }', 'name': 'IncompatibleSchema'}}
is there something that should be done in skygear for this to work ?