createTable('calendar_appt_configs'); $table->addColumn('id', 'bigint', [ 'autoincrement' => true, 'notnull' => true, 'length' => 11, 'unsigned' => true ]); // Appointment $table->addColumn('token', 'string', [ 'notnull' => true, 'length' => 128 ]); // Appointment $table->addColumn('name', 'string', [ 'notnull' => true, 'length' => 128 ]); $table->addColumn('description', 'text', [ 'notnull' => false, 'length' => null ]); $table->addColumn('location', 'text', [ 'notnull' => false, 'length' => null ]); //Visibility [enum] - PUBLIC (shown somewhere on the user's profile), PRIVATE (only shareable by link) - possibly other variations? $table->addColumn('visibility', 'string', [ 'notnull' => true, 'length' => 10 ]); $table->addColumn('user_id', 'string', [ 'notnull' => true, 'length' => 64 ]); $table->addColumn('target_calendar_uri', 'string', [ 'notnull' => true, 'length' => 255 ]); //Calendar(s) for conflict handling [string array] $table->addColumn('calendar_freebusy_uris', 'text', [ 'notnull' => false, 'length' => null ]); //Slot availabilities [RRULE] $table->addColumn('availability', 'text', [ 'notnull' => false, 'length' => null, ]); $table->addColumn('start', 'integer', [ 'notnull' => false, ]); $table->addColumn('end', 'integer', [ 'notnull' => false, ]); $table->addColumn('length', 'integer', [ 'notnull' => true ]); $table->addColumn('increment', 'integer', [ 'notnull' => true ]); $table->addColumn('preparation_duration', 'integer', [ 'notnull' => true, 'default' => 0 ]); $table->addColumn('followup_duration', 'integer', [ 'notnull' => true, 'default' => 0 ]); // Minimum time before next appointment slot can be booked $table->addColumn('time_before_next_slot', 'integer', [ 'notnull' => false ]); //Maximum slots per day - if 0, fit as many as possible $table->addColumn('daily_max', 'integer', [ 'notnull' => false, 'default' => null ]); $table->setPrimaryKey(['id']); $table->addUniqueIndex(['token'], 'cal_appt_token_uniq_idx'); return $schema; } }