43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use yii\db\Migration;
 | |
| 
 | |
| /**
 | |
|  * Handles the creation of table `{{%document}}`.
 | |
|  */
 | |
| class m221108_135939_create_document_table extends Migration
 | |
| {
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function safeUp()
 | |
|     {
 | |
|         $this->createTable('{{%document}}', [
 | |
|             'id' => $this->primaryKey(),
 | |
|             'company_id' => $this->integer(11)->notNull(),
 | |
|             'contractor_company_id' => $this->integer(11)->notNull(),
 | |
|             'manager_id' => $this->integer(11)->notNull(),
 | |
|             'contractor_manager_id' => $this->integer(11)->notNull(),
 | |
|             'template_id' => $this->integer(11)->notNull(),
 | |
|             'title' => $this->string(),
 | |
|             'body' => $this->text(),
 | |
|             'created_at' => $this->dateTime(),
 | |
|             'updated_at' => $this->dateTime(),
 | |
|         ]);
 | |
| 
 | |
|         $this->addForeignKey('company_document', 'document', 'company_id', 'company', 'id');
 | |
|         $this->addForeignKey('contractor_company_document', 'document', 'contractor_company_id', 'company', 'id');
 | |
|         $this->addForeignKey('manager_document', 'document', 'manager_id','manager', 'id');
 | |
|         $this->addForeignKey('contractor_manager_document', 'document', 'contractor_manager_id','manager', 'id');
 | |
|         $this->addForeignKey('document_template_document', 'document', 'template_id','document_template', 'id');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function safeDown()
 | |
|     {
 | |
|         $this->dropTable('{{%document}}');
 | |
|     }
 | |
| }
 | 
