createTable('customer', [ 'id' => $this->primaryKey(), 'name' => $this->string(), 'secondname' => $this->string(), 'dignity' => $this->string(), 'gender' => $this->smallInteger(1), 'birth' => $this->string(), 'citizenship' => $this->string(), 'passport' => $this->string(), 'email' => $this->string(), 'organization' => $this->text(), 'status' => $this->smallInteger(1), 'language_id' => $this->integer(), 'image' => $this->string(), 'conference' => $this->boolean(), 'geee' => $this->boolean(), 'gere' => $this->boolean() ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('customer'); } }