appwrite/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md
2025-08-23 22:52:20 +12:00

564 B

setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key $tablesDB = new TablesDB($client); $result = $tablesDB->createStringColumn( databaseId: '', tableId: '', key: '', size: 1, required: false, default: '', // optional array: false, // optional encrypt: false // optional );