I want to be about to create a redbeanPHP bean without initializing the bean, here is an example:
//create bean sample data as a table in a database
$sampledata = R::dispense('sampledata');
//Create column
$sampledata->slotName = "John Doe"; //TEXT
So my question, Is it possible to create a Text
bean - slotName
without populating the column with "John Doe"