/home/techb158/public_html/wp-content/plugins/kirki/database/migrations
NameSizeModeActions
CreateCmReferenceTable.php9010644editdlrm
CreateCollaborationsConnectedTable.php7960644editdlrm
CreateCollaborationsSentTable.php7460644editdlrm
CreateCollaborationsTable.php10180644editdlrm
CreateCommentsSeenTable.php7710644editdlrm
CreateCommentsTable.php10600644editdlrm
CreateFormsDataTable.php9990644editdlrm
CreateFormsTable.php7340644editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/kirki/database/migrations/CreateFormsDataTable.php (999B)
id(); $table->unsigned_big_integer('form_id'); $table->unsigned_big_integer('user_id')->nullable(); $table->string('session_id'); $table->big_integer('timestamp'); $table->string('input_key'); $table->string('input_value', 2000); $table->string('input_type', 100)->default('text'); $table->timestamp('created_at')->use_current(); $table->datetime('updated_at')->use_current(); $table->index('form_id', 'form_id'); }); } public function down() { Schema::drop_if_exists('kirki_forms_data'); } }