createTable('Marca', [ "id" => $this->string(36), "clave" => $this->string(100)->notNull(), "marca" => $this->string(100)->notNull(), "descripcion" => $this->string(100)->notNull(), "creado" => $this->timestamp()->append(" with time zone"), "modificado" => $this->timestamp()->append(" with time zone"), "eliminado" => $this->timestamp()->append(" with time zone"), ]); $this->addPrimaryKey('MarcaPK', 'Marca', 'id'); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable("Marca"); } }