custom fields have been added to the documents
This commit is contained in:
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use yii\db\Migration;
|
||||
|
||||
/**
|
||||
* Handles the creation of table `{{%document_field_value}}`.
|
||||
*/
|
||||
class m221205_124307_create_document_field_value_table extends Migration
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function safeUp()
|
||||
{
|
||||
$this->createTable('{{%document_field_value}}', [
|
||||
'id' => $this->primaryKey(),
|
||||
'document_field_id' => $this->integer(11)->notNull(),
|
||||
'document_id' => $this->integer(11)->notNull(),
|
||||
'value' => $this->string()
|
||||
]);
|
||||
|
||||
$this->addForeignKey('document_field_document_field_value', 'document_field_value', 'document_field_id', 'document_field', 'id');
|
||||
$this->addForeignKey('document_document_field_value', 'document_field_value', 'document_id', 'document', 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function safeDown()
|
||||
{
|
||||
$this->dropForeignKey('document_field_document_field_value', 'document_field_value');
|
||||
$this->dropForeignKey('document_document_field_value', 'document_field_value');
|
||||
$this->dropTable('{{%document_field_value}}');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user